diff options
author | Christian Dywan <christian@imendio.com> | 2008-08-28 17:50:52 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-08-28 17:50:52 +0000 |
commit | 41cef8545b55b9739f1b06a09d700a0ee25182c8 (patch) | |
tree | 63fd4464608cbf2215667c6a6ea8bbc5db5138fe /gtk/gtkselection.c | |
parent | 447365b2c2d8588beb5e5d66d2eb1dd3797714f7 (diff) | |
download | gtk+-41cef8545b55b9739f1b06a09d700a0ee25182c8.tar.gz |
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
Diffstat (limited to 'gtk/gtkselection.c')
-rw-r--r-- | gtk/gtkselection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkselection.c b/gtk/gtkselection.c index 3002b874fc..aca1bde176 100644 --- a/gtk/gtkselection.c +++ b/gtk/gtkselection.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); |