diff options
author | Daniel Stone <daniel@fooishbar.org> | 2012-05-30 16:31:51 +0100 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-05-31 15:42:47 -0400 |
commit | 4dbadb1556f296cf148ed91a1044004ec6c80707 (patch) | |
tree | 1bc7caaadce31fca754d003c379b5b026c31d6e0 /tests | |
parent | 11d7139989860a1405124b889db2fbad087a5a09 (diff) | |
download | weston-4dbadb1556f296cf148ed91a1044004ec6c80707.tar.gz weston-4dbadb1556f296cf148ed91a1044004ec6c80707.tar.bz2 weston-4dbadb1556f296cf148ed91a1044004ec6c80707.zip |
Use enum wl_pointer_button_state instead of integer
Instead of using a uint32_t for state everywhere (except on the wire,
where that's still the call signature), use the new
wl_pointer_button_state enum, and explicit comparisons.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-client.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test-client.c b/tests/test-client.c index fc65ee60..7c8f3fef 100644 --- a/tests/test-client.c +++ b/tests/test-client.c @@ -92,13 +92,14 @@ pointer_handle_motion(void *data, struct wl_pointer *pointer, static void pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial, uint32_t time, uint32_t button, - uint32_t state) + uint32_t state_w) { struct input *input = data; uint32_t bit; + enum wl_pointer_button_state state = state_w; bit = 1 << (button - BTN_LEFT); - if (state) + if (state == WL_POINTER_BUTTON_STATE_PRESSED) input->button_mask |= bit; else input->button_mask &= ~bit; |