diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2002-09-26 22:41:23 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2002-09-26 22:41:23 +0800 |
commit | e04d2b2255b0e5774714c5067762a9a78b7e9a12 (patch) | |
tree | 3b14001edba6b21fece8f81932dd3b030e4f69f1 | |
parent | faad22f59697728e87601c46d17605426ed46b6b (diff) | |
download | gsoc2013-evolution-e04d2b2255b0e5774714c5067762a9a78b7e9a12.tar gsoc2013-evolution-e04d2b2255b0e5774714c5067762a9a78b7e9a12.tar.gz gsoc2013-evolution-e04d2b2255b0e5774714c5067762a9a78b7e9a12.tar.bz2 gsoc2013-evolution-e04d2b2255b0e5774714c5067762a9a78b7e9a12.tar.lz gsoc2013-evolution-e04d2b2255b0e5774714c5067762a9a78b7e9a12.tar.xz gsoc2013-evolution-e04d2b2255b0e5774714c5067762a9a78b7e9a12.tar.zst gsoc2013-evolution-e04d2b2255b0e5774714c5067762a9a78b7e9a12.zip |
set history_id on GnomeFileEntry, to actually get the history.
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.
svn path=/trunk/; revision=18233
-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); |