forked from AuroraMiddleware/gtk
Add this function, bug #438440.
2007-05-30 Richard Hult <richard@imendio.com> * gdk/quartz/gdkselection-quartz.c (gdk_free_text_list): Add this function, bug #438440. svn path=/trunk/; revision=17991
This commit is contained in:
parent
de42416ac2
commit
71cf54aef3
@ -1,3 +1,8 @@
|
||||
2007-05-30 Richard Hult <richard@imendio.com>
|
||||
|
||||
* gdk/quartz/gdkselection-quartz.c (gdk_free_text_list): Add this
|
||||
function, bug #438440.
|
||||
|
||||
2007-05-30 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* gdk/win32/gdkevents-win32.c (gdk_pointer_grab): Subtract the
|
||||
|
@ -122,6 +122,15 @@ gdk_utf8_to_compound_text_for_display (GdkDisplay *display,
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
gdk_free_text_list (gchar **list)
|
||||
{
|
||||
g_return_if_fail (list != NULL);
|
||||
|
||||
g_free (*list);
|
||||
g_free (list);
|
||||
}
|
||||
|
||||
static gint
|
||||
make_list (const gchar *text,
|
||||
gint length,
|
||||
@ -223,3 +232,4 @@ gdk_text_property_to_utf8_list_for_display (GdkDisplay *display,
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user