aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-shell-startup-wizard.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 3e75d24a2c..e13943aaf2 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,11 @@
2002-11-13 Ettore Perazzoli <ettore@ximian.com>
+ * e-shell-startup-wizard.c: Change type of member etd in
+ TimezoneDialogPage to GObject from GtkObject.
+ (make_timezone_page): Cast to G_OBJECT() not GTK_OBJECT().
+
+2002-11-13 Ettore Perazzoli <ettore@ximian.com>
+
* e-shell-startup-wizard.c (e_shell_startup_wizard_create):
Connect finish_func to the "next" signal for now, since GnomeDruid
seems to be borked.
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;