diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-importer.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 42cf1dcfd7..86679f3c20 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2004-08-12 Carlos Garnacho Parro <carlosg@gnome.org> + + * e-shell-importer.c: added the "use_filechooser" property to the + GnomeFileEntry + 2004-08-10 Not Zed <NotZed@Ximian.com> * main.c (main): init epasswords. diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index bc217b20f2..2a923bac81 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -629,6 +629,7 @@ importer_file_page_new (ImportData *data) gtk_misc_set_alignment (GTK_MISC (label), 1, 0.5); page->filename = gnome_file_entry_new ("Evolution_Importer_FileName", _("Select a file")); + g_object_set (G_OBJECT (page->filename), "use_filechooser", TRUE, NULL); entry = gnome_file_entry_gtk_entry((GnomeFileEntry *)page->filename); g_signal_connect (entry, "changed", G_CALLBACK (filename_changed), data); gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE); |