From 7ffcd85d13ce954d66396c88243c6b2a9c31ffbc Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 8 Apr 2013 17:25:19 +0200 Subject: [PATCH] quartz: Fix call to missing symbol This patch can be considered a leftover of commit 6f607fc8b4cd , replace the no longer existing function with the GDK function meant to replace it. This was noticeable on regular clipboard operations in quartz --- gtk/gtkclipboard-quartz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkclipboard-quartz.c b/gtk/gtkclipboard-quartz.c index 482f6aa135..ab7732bf1c 100644 --- a/gtk/gtkclipboard-quartz.c +++ b/gtk/gtkclipboard-quartz.c @@ -108,7 +108,7 @@ static GtkClipboard *clipboard_peek (GdkDisplay *display, memset (&selection_data, 0, sizeof (GtkSelectionData)); selection_data.selection = clipboard->selection; - selection_data.target = _gtk_quartz_pasteboard_type_to_atom (type); + selection_data.target = gdk_quartz_pasteboard_type_to_atom_libgtk_only (type); selection_data.display = gdk_display_get_default (); selection_data.length = -1;