diff options
author | Carlos Garnacho <carlos@lanedo.com> | 2013-04-08 17:25:19 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2013-04-09 12:38:46 +0200 |
commit | 7ffcd85d13ce954d66396c88243c6b2a9c31ffbc (patch) | |
tree | d2779205ef2643df27c7c113312a866ca244a3f4 /gtk/gtkclipboard-quartz.c | |
parent | c4dc0e8e40e2144d84810f7603c9d1552e25fb43 (diff) | |
download | gtk+-7ffcd85d13ce954d66396c88243c6b2a9c31ffbc.tar.gz |
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
Diffstat (limited to 'gtk/gtkclipboard-quartz.c')
-rw-r--r-- | gtk/gtkclipboard-quartz.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |