Rename pointer_input::notify to indicate that is called on button clicks

This commit is contained in:
David Eklov 2016-07-11 22:51:50 -05:00
parent a11277c88f
commit 250ddc66c6
3 changed files with 4 additions and 4 deletions

View file

@ -31,7 +31,7 @@ struct pointer_input {
int last_x;
int last_y;
void (*notify)(struct window *window, int x, int y, uint32_t button);
void (*notify_button)(struct window *window, int x, int y, uint32_t button);
};
struct window {