diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-03-17 02:45:16 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-03-17 02:45:16 +0800 |
commit | c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa (patch) | |
tree | f212f9107faa076933e8afc63ffe9f467cf0447b /src/window-commands.c | |
parent | afb64e1503b7c459887710747be56522abf02e3e (diff) | |
download | gsoc2013-epiphany-c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa.tar gsoc2013-epiphany-c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa.tar.gz gsoc2013-epiphany-c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa.tar.bz2 gsoc2013-epiphany-c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa.tar.lz gsoc2013-epiphany-c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa.tar.xz gsoc2013-epiphany-c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa.tar.zst gsoc2013-epiphany-c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa.zip |
Cleanup filepicker api behavior. Put pdm buttons in a size group, to make
2003-03-16 Marco Pesenti Gritti <marco@it.gnome.org>
* embed/ephy-embed-utils.c: (ephy_embed_utils_save):
* embed/mozilla/mozilla-embed-single.cpp:
* src/pdm-dialog.c: (group_button_allocations), (pdm_dialog_init):
* src/window-commands.c: (window_cmd_file_open):
Cleanup filepicker api behavior.
Put pdm buttons in a size group, to make switching page smoother.
(from galeon)
Diffstat (limited to 'src/window-commands.c')
-rw-r--r-- | src/window-commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index c217b3bd4..bc793234d 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -287,7 +287,7 @@ window_cmd_file_open (EggAction *action, EphyWindow *window) { gchar *dir, *retDir; - gchar *file = NULL; + gchar *file; GnomeVFSURI *uri; GtkWidget *wmain; EphyEmbedShell *embed_shell; @@ -327,10 +327,10 @@ window_cmd_file_open (EggAction *action, g_free (retDir); gnome_vfs_uri_unref (uri); } + g_free (file); } g_free (dir); - g_free (file); } void |