diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-10-31 23:49:09 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-10-31 23:49:09 +0000 |
commit | 2145a4ef10fef74e42c4f893097021d6b1a7d5e9 (patch) | |
tree | 4ce386c83514e2b72e5784143d471c587983c88c /gtk/gtkfilesel.c | |
parent | 7dccab8f3de75a334b70c942dd9597adbe361219 (diff) | |
download | gdk-pixbuf-2145a4ef10fef74e42c4f893097021d6b1a7d5e9.tar.gz |
Add a "menu" property and notify on it. (#62798, Padraig O'Briain)
Wed Oct 31 18:23:47 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkoptionmenu.c (gtk_option_menu_detacher):
Add a "menu" property and notify on it. (#62798,
Padraig O'Briain)
* gtk/gtkselection.[ch] gtk/{gtkentry.c, gtkfilesel.c,
gtkoldeditable.c, gtktextbuffer.c, gtktextview.c}:
Fix set_text to take a gchar, not a guchar, and to have
a len argument.
Diffstat (limited to 'gtk/gtkfilesel.c')
-rw-r--r-- | gtk/gtkfilesel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfilesel.c b/gtk/gtkfilesel.c index 5c7f255dd..baeba13b3 100644 --- a/gtk/gtkfilesel.c +++ b/gtk/gtkfilesel.c @@ -915,7 +915,7 @@ filenames_drag_get (GtkWidget *widget, else { g_print ("Setting text: '%s'\n", file); - gtk_selection_data_set_text (selection_data, file); + gtk_selection_data_set_text (selection_data, file, -1); } } } |