summaryrefslogtreecommitdiff
path: root/gdk/quartz
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2017-12-17 20:29:11 +0100
committerBenjamin Otte <otte@redhat.com>2018-01-31 13:21:26 +0100
commit3e0fab6b9325160a8851173cc78b2bbd42fc5f65 (patch)
treee8f33d2565b53341f430d7c752cb0b70e0830e3d /gdk/quartz
parente8986d18c2deb5dd6b1a674d30502c0aa4bdd95e (diff)
downloadgtk+-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/quartz')
-rw-r--r--gdk/quartz/gdkdnd-quartz.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/gdk/quartz/gdkdnd-quartz.c b/gdk/quartz/gdkdnd-quartz.c
index 65412b03c3..8d16219a57 100644
--- a/gdk/quartz/gdkdnd-quartz.c
+++ b/gdk/quartz/gdkdnd-quartz.c
@@ -57,31 +57,6 @@ _gdk_quartz_window_drag_begin (GdkWindow *window,
return _gdk_quartz_drag_source_context;
}
-static gboolean
-gdk_quartz_drag_context_drag_motion (GdkDragContext *context,
- GdkWindow *dest_window,
- GdkDragProtocol protocol,
- gint x_root,
- gint y_root,
- GdkDragAction suggested_action,
- GdkDragAction possible_actions,
- guint32 time)
-{
- /* FIXME: Implement */
- return FALSE;
-}
-
-static GdkWindow *
-gdk_quartz_drag_context_find_window (GdkDragContext *context,
- GdkWindow *drag_window,
- gint x_root,
- gint y_root,
- GdkDragProtocol *protocol)
-{
- /* FIXME: Implement */
- return NULL;
-}
-
static void
gdk_quartz_drag_context_drag_drop (GdkDragContext *context,
guint32 time)
@@ -158,9 +133,7 @@ gdk_quartz_drag_context_class_init (GdkQuartzDragContextClass *klass)
object_class->finalize = gdk_quartz_drag_context_finalize;
- context_class->find_window = gdk_quartz_drag_context_find_window;
context_class->drag_status = gdk_quartz_drag_context_drag_status;
- context_class->drag_motion = gdk_quartz_drag_context_drag_motion;
context_class->drag_abort = gdk_quartz_drag_context_drag_abort;
context_class->drag_drop = gdk_quartz_drag_context_drag_drop;
context_class->drop_reply = gdk_quartz_drag_context_drop_reply;