diff options
author | Tim Janik <timj@gimp.org> | 1998-02-03 14:13:05 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-02-03 14:13:05 +0000 |
commit | b45cd0430c79f9426036ced2809427e0920dd855 (patch) | |
tree | d278a375e959b28d1f59e87cdffcfaa06dd11273 /gtk/gtkfilesel.c | |
parent | a8629917ae91588cea02e0e8a20afc593a263cd7 (diff) | |
download | gtk+-b45cd0430c79f9426036ced2809427e0920dd855.tar.gz |
attach/detach to menu widget via
Tue Feb 3 15:09:55 1998 Tim Janik <timj@gimp.org>
* gtk/gtkoptionmenu.h:
* gtk/gtkoptionmenu.c: attach/detach to menu widget via
* gtk/gtkmenu.h:
* gtk/gtkmenu.c: new functions gtk_menu_attach_to_widget
and gtk_menu_detach that correspond to the action of
gtk_widget_set_parent and gtk_widget_unparent.
* gtk/widget.c: few fixups.
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 8a9d123ad6..6ac0326598 100644 --- a/gtk/gtkfilesel.c +++ b/gtk/gtkfilesel.c @@ -1045,7 +1045,7 @@ gtk_file_selection_update_history_menu (GtkFileSelection *fs, fs->history_menu = gtk_menu_new(); - current_dir = g_strdup(current_directory); + current_dir = g_strdup (current_directory); dir_len = strlen (current_dir); |