diff options
author | Carlos Garnacho Parro <carlosg@gnome.org> | 2004-08-13 04:37:07 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-08-13 04:37:07 +0800 |
commit | 4cc6322a8c0345709d196022a0c87d15c5f93580 (patch) | |
tree | 91eb7a40656ddd9e62e32103c231e254e8bef360 | |
parent | f52c23ee48a781d2a3d364661e0cf46554cc1274 (diff) | |
download | gsoc2013-evolution-4cc6322a8c0345709d196022a0c87d15c5f93580.tar gsoc2013-evolution-4cc6322a8c0345709d196022a0c87d15c5f93580.tar.gz gsoc2013-evolution-4cc6322a8c0345709d196022a0c87d15c5f93580.tar.bz2 gsoc2013-evolution-4cc6322a8c0345709d196022a0c87d15c5f93580.tar.lz gsoc2013-evolution-4cc6322a8c0345709d196022a0c87d15c5f93580.tar.xz gsoc2013-evolution-4cc6322a8c0345709d196022a0c87d15c5f93580.tar.zst gsoc2013-evolution-4cc6322a8c0345709d196022a0c87d15c5f93580.zip |
added the "use_filechooser" property to the GnomeFileEntry
2004-08-12 Carlos Garnacho Parro <carlosg@gnome.org>
* e-shell-importer.c: added the "use_filechooser" property to the
GnomeFileEntry
svn path=/trunk/; revision=26894
-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); |