diff options
author | Daniel Stone <daniel@fooishbar.org> | 2012-05-30 16:32:00 +0100 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-05-31 15:45:25 -0400 |
commit | 2fce4028d6dd5c29649bd2ce25df4c3d4e400a92 (patch) | |
tree | 03983c2b2584cdb470520462f5a0900831dcf345 /clients | |
parent | 0c1e46eb18ab48c48ce29464deb4ce5e23130c2b (diff) |
Convert wl_pointer::axis to wl_fixed_t
To go with the matching protocol change.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Diffstat (limited to 'clients')
-rw-r--r-- | clients/simple-egl.c | 2 | ||||
-rw-r--r-- | clients/window.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clients/simple-egl.c b/clients/simple-egl.c index 831f6af..5dd44f9 100644 --- a/clients/simple-egl.c +++ b/clients/simple-egl.c @@ -385,7 +385,7 @@ pointer_handle_button(void *data, struct wl_pointer *wl_pointer, static void pointer_handle_axis(void *data, struct wl_pointer *wl_pointer, - uint32_t time, uint32_t axis, int32_t value) + uint32_t time, uint32_t axis, wl_fixed_t value) { } diff --git a/clients/window.c b/clients/window.c index f1f9176..9147da2 100644 --- a/clients/window.c +++ b/clients/window.c @@ -1813,7 +1813,7 @@ pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial, static void pointer_handle_axis(void *data, struct wl_pointer *pointer, - uint32_t time, uint32_t axis, int32_t value) + uint32_t time, uint32_t axis, wl_fixed_t value) { } |