diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-10-16 05:02:48 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-10-16 05:02:48 +0800 |
commit | 327b4ddd88fa29c6a5e890e055f5bab999b37704 (patch) | |
tree | fc1d6b5d24f7ef050e22e675c95e6c561908f3b5 | |
parent | cd0111464fecd13de75fe721a29e22a0a358fd0d (diff) | |
download | gsoc2013-evolution-327b4ddd88fa29c6a5e890e055f5bab999b37704.tar gsoc2013-evolution-327b4ddd88fa29c6a5e890e055f5bab999b37704.tar.gz gsoc2013-evolution-327b4ddd88fa29c6a5e890e055f5bab999b37704.tar.bz2 gsoc2013-evolution-327b4ddd88fa29c6a5e890e055f5bab999b37704.tar.lz gsoc2013-evolution-327b4ddd88fa29c6a5e890e055f5bab999b37704.tar.xz gsoc2013-evolution-327b4ddd88fa29c6a5e890e055f5bab999b37704.tar.zst gsoc2013-evolution-327b4ddd88fa29c6a5e890e055f5bab999b37704.zip |
Fix bug 11114
svn path=/trunk/; revision=13685
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-startup-wizard.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 563f5fcdae..6819243d8f 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-10-15 Iain Holmes <iain@ximian.com> + + * e-shell-startup-wizard.c (prepare_importer_page): Stop the prepare + running twice. + 2001-10-14 Dan Winship <danw@ximian.com> * e-corba-storage.c (async_folder_cb): diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c index 79b3e2964b..c434a95463 100644 --- a/shell/e-shell-startup-wizard.c +++ b/shell/e-shell-startup-wizard.c @@ -571,6 +571,8 @@ prepare_importer_page (GnomeDruidPage *page, return TRUE; } + data->import_page->prepared = TRUE; + dialog = gnome_message_box_new (_("Please wait...\nScanning for existing setups"), GNOME_MESSAGE_BOX_INFO, NULL); e_make_widget_backing_stored (dialog); |