summaryrefslogtreecommitdiff
path: root/gdk/quartz/gdkdnd-quartz.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2017-12-14 04:34:33 +0100
committerBenjamin Otte <otte@redhat.com>2017-12-14 04:39:22 +0100
commitb49a9b9933490dc717894fbef4cae0df0775453c (patch)
treeb1997059daa5d8760aefb0610f82b2ec0f438997 /gdk/quartz/gdkdnd-quartz.c
parent65fcff87b2df4d217814bf6519e2ebe433baf1aa (diff)
downloadgtk+-b49a9b9933490dc717894fbef4cae0df0775453c.tar.gz
dnd: Remove gdk_drag_get_selection()
Without selections, drags can't have them either. Also included is removing the selection from GtkSelectionData. Includes a bunch of crude cleanups to Wayland code that no longer has to care about selection atoms.
Diffstat (limited to 'gdk/quartz/gdkdnd-quartz.c')
-rw-r--r--gdk/quartz/gdkdnd-quartz.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gdk/quartz/gdkdnd-quartz.c b/gdk/quartz/gdkdnd-quartz.c
index 21438481b4..65412b03c3 100644
--- a/gdk/quartz/gdkdnd-quartz.c
+++ b/gdk/quartz/gdkdnd-quartz.c
@@ -126,13 +126,6 @@ _gdk_quartz_window_register_dnd (GdkWindow *window)
/* FIXME: Implement */
}
-static GdkAtom
-gdk_quartz_drag_context_get_selection (GdkDragContext *context)
-{
- /* FIXME: Implement */
- return NULL;
-}
-
static gboolean
gdk_quartz_drag_context_drop_status (GdkDragContext *context)
{
@@ -173,5 +166,4 @@ gdk_quartz_drag_context_class_init (GdkQuartzDragContextClass *klass)
context_class->drop_reply = gdk_quartz_drag_context_drop_reply;
context_class->drop_finish = gdk_quartz_drag_context_drop_finish;
context_class->drop_status = gdk_quartz_drag_context_drop_status;
- context_class->get_selection = gdk_quartz_drag_context_get_selection;
}