Remove unused function key_state_nr_pressed_keys()

This commit is contained in:
Johan Malm 2025-09-25 19:38:13 +01:00 committed by John Lindgren
parent bdc8e1c546
commit 1692c47fa0
2 changed files with 0 additions and 7 deletions

View file

@ -24,6 +24,5 @@ void key_state_store_pressed_key_as_bound(uint32_t keycode);
bool key_state_corresponding_press_event_was_bound(uint32_t keycode);
void key_state_bound_key_remove(uint32_t keycode);
int key_state_nr_bound_keys(void);
int key_state_nr_pressed_keys(void);
#endif /* LABWC_KEY_STATE_H */

View file

@ -84,9 +84,3 @@ key_state_nr_bound_keys(void)
{
return bound.size;
}
int
key_state_nr_pressed_keys(void)
{
return pressed.size;
}