diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2015-06-01 14:55:20 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2015-06-02 18:09:49 +0200 |
commit | b84d9ea7ff3f30e4101e98853cefda1762bcb86d (patch) | |
tree | 62e19eeebe2820350fb5bf45de9c23a3dce6b7b4 /gdk/wayland/gdkprivate-wayland.h | |
parent | d34b1225eb294da71e84c391dc86cc8b2964383f (diff) | |
download | gtk+-b84d9ea7ff3f30e4101e98853cefda1762bcb86d.tar.gz |
wayland: Move DnD grab breaking function into gdkdevice-wayland.c
This has little to do with GdkDragContext, and a lot to do with
the GdkDevice that triggered it, seems to make more sense in
gdkdevice-wayland.c.
Diffstat (limited to 'gdk/wayland/gdkprivate-wayland.h')
-rw-r--r-- | gdk/wayland/gdkprivate-wayland.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/wayland/gdkprivate-wayland.h b/gdk/wayland/gdkprivate-wayland.h index cd2e171980..beb489a8c0 100644 --- a/gdk/wayland/gdkprivate-wayland.h +++ b/gdk/wayland/gdkprivate-wayland.h @@ -125,8 +125,6 @@ GdkDragContext * gdk_wayland_drag_context_lookup_by_data_source (struct wl_dat GdkDragContext * gdk_wayland_drag_context_lookup_by_source_window (GdkWindow *window); struct wl_data_source * gdk_wayland_drag_context_get_data_source (GdkDragContext *context); -void gdk_wayland_drag_context_undo_grab (GdkDragContext *context); - void gdk_wayland_drop_context_update_targets (GdkDragContext *context); void _gdk_wayland_display_create_window_impl (GdkDisplay *display, @@ -187,6 +185,8 @@ struct wl_data_device * gdk_wayland_device_get_data_device (GdkDevice *gdk_devic void gdk_wayland_device_set_selection (GdkDevice *gdk_device, struct wl_data_source *source); +void gdk_wayland_device_unset_grab (GdkDevice *device); + void gdk_wayland_device_unset_touch_grab (GdkDevice *device, GdkEventSequence *sequence); |