diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-importer.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 1f50d73486..7c9eecd879 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2002-09-25 Rodrigo Moya <rodrigo@ximian.com> + + * e-shell-importer.c (importer_file_page_new): set history_id on + GnomeFileEntry, to actually get the history. + 2002-09-25 Dan Winship <danw@ximian.com> * e-shell-folder-selection-dialog.c (check_folder_type_valid): diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index dd73742e4b..5fc9adaedb 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -688,7 +688,7 @@ importer_file_page_new (ImportData *data) GTK_FILL, 0, 0, 0); gtk_misc_set_alignment (GTK_MISC (label), 1, 0.5); - page->filename = gnome_file_entry_new (NULL, _("Select a file")); + page->filename = gnome_file_entry_new ("Evolution_Importer_FileName", _("Select a file")); gtk_signal_connect (GTK_OBJECT (gnome_file_entry_gtk_entry (GNOME_FILE_ENTRY (page->filename))), "changed", GTK_SIGNAL_FUNC (filename_changed), data); |