diff options
author | Alexandros Frantzis <alexandros.frantzis@collabora.com> | 2017-11-16 18:20:59 +0200 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2017-11-27 11:42:07 +0200 |
commit | 27a51b83e56ac04ffd17b6220db3c2a46e9b09ae (patch) | |
tree | 0f7a8f8bc3a2ad26ededf3cae0d888780cf38177 /ivi-shell | |
parent | 9448deb07341632b5826422f657d44fc792ab83b (diff) |
libweston: Use struct timespec for touch up events
Change code related to touch up events to use struct timespec to represent
time.
This commit is part of a larger effort to transition the Weston codebase
to struct timespec.
Signed-off-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Diffstat (limited to 'ivi-shell')
-rw-r--r-- | ivi-shell/hmi-controller.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ivi-shell/hmi-controller.c b/ivi-shell/hmi-controller.c index 9b99668c..f9500ef5 100644 --- a/ivi-shell/hmi-controller.c +++ b/ivi-shell/hmi-controller.c @@ -1591,7 +1591,8 @@ touch_nope_grab_down(struct weston_touch_grab *grab, } static void -touch_move_workspace_grab_up(struct weston_touch_grab *grab, uint32_t time, +touch_move_workspace_grab_up(struct weston_touch_grab *grab, + const struct timespec *time, int touch_id) { struct touch_move_grab *tch_move_grab = (struct touch_move_grab *)grab; |