diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-08-18 03:44:17 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-08-18 03:44:17 +0800 |
commit | d5ea07e5bebd33b4189115284bc48b71f0eb57b2 (patch) | |
tree | 9924e56fe9480ea98873e1141de158a47e442b72 /shell/e-shell-startup-wizard.c | |
parent | 7473860c9fc3aa301cbb51da28928e63e74117b1 (diff) | |
download | gsoc2013-evolution-d5ea07e5bebd33b4189115284bc48b71f0eb57b2.tar.gz gsoc2013-evolution-d5ea07e5bebd33b4189115284bc48b71f0eb57b2.tar.zst gsoc2013-evolution-d5ea07e5bebd33b4189115284bc48b71f0eb57b2.zip |
Compile fixes
svn path=/trunk/; revision=12172
Diffstat (limited to 'shell/e-shell-startup-wizard.c')
-rw-r--r-- | shell/e-shell-startup-wizard.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c index 72a10c7c19..18b7b59287 100644 --- a/shell/e-shell-startup-wizard.c +++ b/shell/e-shell-startup-wizard.c @@ -318,6 +318,8 @@ finish_func (GnomeDruidPage *page, data->cancel = FALSE; gtk_widget_destroy (data->dialog); gtk_main_quit (); + + return TRUE; } static void @@ -480,9 +482,9 @@ make_timezone_page (SWData *data) page->page = glade_xml_get_widget (data->wizard, "timezone-page"); g_return_val_if_fail (page->page != NULL, NULL); - page->vbox = GNOME_DRUID_PAGE_STANDARD (page->page)->vbox; + page->vbox = GTK_WIDGET (GNOME_DRUID_PAGE_STANDARD (page->page)->vbox); - page->etd = e_timezone_dialog_new (); + page->etd = GTK_OBJECT (e_timezone_dialog_new ()); e_timezone_dialog_reparent (page->etd, page->vbox); return page; |