Rename motion_grab to implicit_grab
authorKristian Høgsberg <krh@bitplanet.net>
Tue, 6 Sep 2011 22:12:43 +0000 (18:12 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Tue, 6 Sep 2011 22:12:43 +0000 (18:12 -0400)
Let's just use the same terms as X.

src/wayland-server.c
src/wayland-server.h

index df6b769..4ee7796 100644 (file)
@@ -503,7 +503,7 @@ wl_input_device_update_grab(struct wl_input_device *device,
                            struct wl_grab *grab,
                            struct wl_surface *surface, uint32_t time)
 {
-       if (device->grab != &device->motion_grab ||
+       if (device->grab != &device->implicit_grab ||
            device->grab_time != time ||
            device->pointer_focus != surface)
                return -1;
index afd3e69..9f5e8c3 100644 (file)
@@ -174,7 +174,7 @@ struct wl_input_device {
 
        int32_t x, y;
        struct wl_grab *grab;
-       struct wl_grab motion_grab;
+       struct wl_grab implicit_grab;
        uint32_t grab_time;
        int32_t grab_x, grab_y;
        uint32_t grab_button;