aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-startup-wizard.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell-startup-wizard.c')
-rw-r--r--shell/e-shell-startup-wizard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c
index 6fffc623d0..fa955184ed 100644
--- a/shell/e-shell-startup-wizard.c
+++ b/shell/e-shell-startup-wizard.c
@@ -54,7 +54,7 @@
typedef struct _TimezoneDialogPage {
GtkWidget *page;
GtkWidget *vbox;
- GtkObject *etd;
+ GObject *etd;
} TimezoneDialogPage;
typedef struct _ImportDialogPage {
@@ -592,7 +592,7 @@ make_timezone_page (SWData *data)
page->vbox = GTK_WIDGET (GNOME_DRUID_PAGE_STANDARD (page->page)->vbox);
etd = e_timezone_dialog_new ();
- page->etd = GTK_OBJECT (etd);
+ page->etd = G_OBJECT (etd);
e_timezone_dialog_reparent (E_TIMEZONE_DIALOG (page->etd), page->vbox);
return page;