diff options
author | Uli Schlachter <psychon@znc.in> | 2018-04-15 10:33:53 +0200 |
---|---|---|
committer | Uli Schlachter <psychon@znc.in> | 2018-04-15 10:33:53 +0200 |
commit | 98f8ec6a081b215f901a47226c39797260a7d1e1 (patch) | |
tree | 3b753549029ff99e3709b412dc691bb602316500 /include | |
parent | 3728abd1fc325bccf02499e3e363791d6f986ebc (diff) |
x11_handle_input_event: Remove return value
handle_x11_event() and x11_handle_input_event() react to different kinds
of events, so it does not make much of a difference if
x11_handle_input_event() signals if it handled an event or not.
Signed-off-by: Uli Schlachter <psychon@znc.in>
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/x11.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index 1c88cefc..aa946912 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -79,7 +79,7 @@ void x11_output_layout_get_box(struct wlr_x11_backend *backend, const struct wlr_input_device_impl input_device_impl; -bool x11_handle_input_event(struct wlr_x11_backend *x11, +void x11_handle_input_event(struct wlr_x11_backend *x11, xcb_generic_event_t *event); void x11_update_pointer_position(struct wlr_x11_output *output, xcb_timestamp_t time); |