From 25b9eca3d8e27378912e85fd4060b0f8c1bbbe69 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Wed, 13 Nov 2002 22:54:28 +0000 Subject: Change type of member etd in TimezoneDialogPage to GObject from GtkObject. (make_timezone_page): Cast to G_OBJECT() not GTK_OBJECT(). svn path=/trunk/; revision=18748 --- shell/e-shell-startup-wizard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell/e-shell-startup-wizard.c') 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; -- cgit