diff options
author | Benjamin Otte <otte@redhat.com> | 2017-12-17 20:29:11 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-01-31 13:21:26 +0100 |
commit | 3e0fab6b9325160a8851173cc78b2bbd42fc5f65 (patch) | |
tree | e8f33d2565b53341f430d7c752cb0b70e0830e3d /gdk/gdkdndprivate.h | |
parent | e8986d18c2deb5dd6b1a674d30502c0aa4bdd95e (diff) | |
download | gtk+-3e0fab6b9325160a8851173cc78b2bbd42fc5f65.tar.gz |
dnd: Remove 2 vfuncs that aren't needed
They're only used inside the X11 backend, and the backend can just call
its own function.
Diffstat (limited to 'gdk/gdkdndprivate.h')
-rw-r--r-- | gdk/gdkdndprivate.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gdk/gdkdndprivate.h b/gdk/gdkdndprivate.h index 05f10435fe..fdf544a5e8 100644 --- a/gdk/gdkdndprivate.h +++ b/gdk/gdkdndprivate.h @@ -60,19 +60,6 @@ typedef struct _GdkDragContextClass GdkDragContextClass; struct _GdkDragContextClass { GObjectClass parent_class; - GdkWindow * (*find_window) (GdkDragContext *context, - GdkWindow *drag_window, - gint x_root, - gint y_root, - GdkDragProtocol *protocol); - gboolean (*drag_motion) (GdkDragContext *context, - GdkWindow *dest_window, - GdkDragProtocol protocol, - gint root_x, - gint root_y, - GdkDragAction suggested_action, - GdkDragAction possible_actions, - guint32 time_); void (*drag_status) (GdkDragContext *context, GdkDragAction action, guint32 time_); @@ -157,26 +144,11 @@ gboolean gdk_drag_context_handle_dest_event (GdkEvent *event); GdkCursor * gdk_drag_get_cursor (GdkDragContext *context, GdkDragAction action); -gboolean gdk_drag_motion (GdkDragContext *context, - GdkWindow *dest_window, - GdkDragProtocol protocol, - gint x_root, - gint y_root, - GdkDragAction suggested_action, - GdkDragAction possible_actions, - guint32 time_); void gdk_drag_abort (GdkDragContext *context, guint32 time_); void gdk_drag_drop (GdkDragContext *context, guint32 time_); -void gdk_drag_find_window (GdkDragContext *context, - GdkWindow *drag_window, - gint x_root, - gint y_root, - GdkWindow **dest_window, - GdkDragProtocol *protocol); - void gdk_drag_context_write_async (GdkDragContext *context, const char *mime_type, GOutputStream *stream, |