Bug 549734 – gtk_selection_data_get_data prototype is wrong
2008-08-28 Christian Dywan <christian@imendio.com> Bug 549734 – gtk_selection_data_get_data prototype is wrong * gtk/gtkselection.[ch] (gtk_selection_data_get_data): make the 'length' argument of gtk_selection_data_get_data a 'gint', that's what it should be. svn path=/trunk/; revision=21229
This commit is contained in:
parent
447365b2c2
commit
41cef8545b
@ -1,3 +1,11 @@
|
||||
2008-08-28 Christian Dywan <christian@imendio.com>
|
||||
|
||||
Bug 549734 – gtk_selection_data_get_data prototype is wrong
|
||||
|
||||
* gtk/gtkselection.[ch] (gtk_selection_data_get_data): make the
|
||||
'length' argument of gtk_selection_data_get_data a 'gint', that's
|
||||
what it should be.
|
||||
|
||||
2008-08-27 Cody Russell <bratsche@gnome.org>
|
||||
|
||||
* gdk/win32/gdkevents-win32.c:
|
||||
|
@ -1180,7 +1180,7 @@ gtk_selection_data_get_format (GtkSelectionData *selection_data)
|
||||
**/
|
||||
const guchar*
|
||||
gtk_selection_data_get_data (GtkSelectionData *selection_data,
|
||||
guint *length)
|
||||
gint *length)
|
||||
{
|
||||
g_return_val_if_fail (selection_data != NULL, NULL);
|
||||
|
||||
|
@ -151,7 +151,7 @@ GdkAtom gtk_selection_data_get_target (GtkSelectionData *selection_data
|
||||
GdkAtom gtk_selection_data_get_data_type (GtkSelectionData *selection_data);
|
||||
gint gtk_selection_data_get_format (GtkSelectionData *selection_data);
|
||||
const guchar *gtk_selection_data_get_data (GtkSelectionData *selection_data,
|
||||
guint *length);
|
||||
gint *length);
|
||||
GdkDisplay *gtk_selection_data_get_display (GtkSelectionData *selection_data);
|
||||
|
||||
void gtk_selection_data_set (GtkSelectionData *selection_data,
|
||||
|
Loading…
Reference in New Issue
Block a user