diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-15 03:48:10 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-15 03:48:10 +0800 |
commit | 2fe33405860f002a63f97f0c85d62f774bcc6fb0 (patch) | |
tree | 1da25fefa5853f79c62c50a4343936a2eeefa2a5 /shell/e-shell-startup-wizard.c | |
parent | 3e92e7a0eb9944948e9d919b06ae5a0079cd119f (diff) | |
download | gsoc2013-evolution-2fe33405860f002a63f97f0c85d62f774bcc6fb0.tar.gz gsoc2013-evolution-2fe33405860f002a63f97f0c85d62f774bcc6fb0.tar.zst gsoc2013-evolution-2fe33405860f002a63f97f0c85d62f774bcc6fb0.zip |
Fix crash and remove warning
svn path=/trunk/; revision=12828
Diffstat (limited to 'shell/e-shell-startup-wizard.c')
-rw-r--r-- | shell/e-shell-startup-wizard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c index b5e8e05bd8..d875540502 100644 --- a/shell/e-shell-startup-wizard.c +++ b/shell/e-shell-startup-wizard.c @@ -273,7 +273,7 @@ do_import (SWData *data) CORBA_Environment ev; GList *l, *selected = NULL; - for (l = GTK_CLIST (data->import_page->importers); l; l = l->next) { + for (l = data->import_page->importers; l; l = l->next) { IntelligentImporterData *importer_data; SelectedImporterData *sid; char *iid; @@ -576,7 +576,7 @@ prepare_importer_page (GnomeDruidPage *page, int running = 0; if (data->import_page->prepared == TRUE) { - return; + return TRUE; } dialog = gnome_message_box_new (_("Please wait...\nScanning for existing setups"), GNOME_MESSAGE_BOX_INFO, NULL); |