diff options
author | Dan Winship <danw@src.gnome.org> | 2003-07-23 23:06:55 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-07-23 23:06:55 +0800 |
commit | 6742a6ed125e292940d616441eec51e4c227a6c9 (patch) | |
tree | 0098892fce5f53045f1e26911dda4cbaf516b585 | |
parent | 16d96582c1133e540812255264195a24c37dc303 (diff) | |
download | gsoc2013-evolution-6742a6ed125e292940d616441eec51e4c227a6c9.tar gsoc2013-evolution-6742a6ed125e292940d616441eec51e4c227a6c9.tar.gz gsoc2013-evolution-6742a6ed125e292940d616441eec51e4c227a6c9.tar.bz2 gsoc2013-evolution-6742a6ed125e292940d616441eec51e4c227a6c9.tar.lz gsoc2013-evolution-6742a6ed125e292940d616441eec51e4c227a6c9.tar.xz gsoc2013-evolution-6742a6ed125e292940d616441eec51e4c227a6c9.tar.zst gsoc2013-evolution-6742a6ed125e292940d616441eec51e4c227a6c9.zip |
Fix a warning
* e-shell-importer.c (prepare_intelligent_page): Fix a warning
svn path=/trunk/; revision=21907
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-importer.c | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index af93597d82..3c7756b543 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2003-07-23 Dan Winship <danw@ximian.com> + + * e-shell-importer.c (prepare_intelligent_page): Fix a warning + 2003-07-22 Antonio Xu <antonio.xu@sun.com> * e-shell-startup-wizard.c (e_shell_startup_wizard_create): connect @@ -11,7 +15,7 @@ forward button rather than jump to finish page. [#46017] 2003-07-15 Antonio Xu <antonio.xu@sun.com> - + * e-shell-startup-wizard.c (e_shell_startup_wizard_create): connect "back" signal to back_finish_func in finish page. (back_finish_func): handle "back" signal. diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index 4bdee8f1a6..bf7481154c 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -739,8 +739,7 @@ prepare_intelligent_page (GnomeDruidPage *page, GtkWidget *dialog; ImportDialogImporterPage *import; GList *l, *importers; - GtkWidget *table; - GtkLabel *no_data; + GtkWidget *table, *no_data; int running = 0; if (data->importerpage->prepared == TRUE) { |