mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Add another missing symbol.
2008-08-15 Richard Hult <richard@imendio.com> * gtk/gtkclipboard-quartz.c (gtk_clipboard_wait_is_uris_available): Add another missing symbol. svn path=/trunk/; revision=21135
This commit is contained in:
parent
a7f6e2c8fb
commit
6a1ff1bc22
@ -1,3 +1,8 @@
|
|||||||
|
2008-08-15 Richard Hult <richard@imendio.com>
|
||||||
|
|
||||||
|
* gtk/gtkclipboard-quartz.c (gtk_clipboard_wait_is_uris_available):
|
||||||
|
Add another missing symbol.
|
||||||
|
|
||||||
2008-08-15 Behdad Esfahbod <behdad@gnome.org>
|
2008-08-15 Behdad Esfahbod <behdad@gnome.org>
|
||||||
|
|
||||||
Bug 547680 – fontconfig monitoring can crash apps
|
Bug 547680 – fontconfig monitoring can crash apps
|
||||||
|
@ -1099,6 +1099,23 @@ gtk_clipboard_wait_is_image_available (GtkClipboard *clipboard)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
gtk_clipboard_wait_is_uris_available (GtkClipboard *clipboard)
|
||||||
|
{
|
||||||
|
GtkSelectionData *data;
|
||||||
|
gboolean result = FALSE;
|
||||||
|
|
||||||
|
data = gtk_clipboard_wait_for_contents (clipboard,
|
||||||
|
gdk_atom_intern_static_string ("TARGETS"));
|
||||||
|
if (data)
|
||||||
|
{
|
||||||
|
result = gtk_selection_data_targets_include_uri (data);
|
||||||
|
gtk_selection_data_free (data);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gtk_clipboard_wait_for_targets
|
* gtk_clipboard_wait_for_targets
|
||||||
* @clipboard: a #GtkClipboard
|
* @clipboard: a #GtkClipboard
|
||||||
|
Loading…
Reference in New Issue
Block a user