diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-14 06:54:28 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-14 06:54:28 +0800 |
commit | 25b9eca3d8e27378912e85fd4060b0f8c1bbbe69 (patch) | |
tree | 889fb0546c66ba93008b07a9721d279ad53b8687 /shell/e-shell-startup-wizard.c | |
parent | d023f5d548b85095292e2491eda6c9b0a5f83aae (diff) | |
download | gsoc2013-evolution-25b9eca3d8e27378912e85fd4060b0f8c1bbbe69.tar gsoc2013-evolution-25b9eca3d8e27378912e85fd4060b0f8c1bbbe69.tar.gz gsoc2013-evolution-25b9eca3d8e27378912e85fd4060b0f8c1bbbe69.tar.bz2 gsoc2013-evolution-25b9eca3d8e27378912e85fd4060b0f8c1bbbe69.tar.lz gsoc2013-evolution-25b9eca3d8e27378912e85fd4060b0f8c1bbbe69.tar.xz gsoc2013-evolution-25b9eca3d8e27378912e85fd4060b0f8c1bbbe69.tar.zst gsoc2013-evolution-25b9eca3d8e27378912e85fd4060b0f8c1bbbe69.zip |
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
Diffstat (limited to 'shell/e-shell-startup-wizard.c')
-rw-r--r-- | shell/e-shell-startup-wizard.c | 4 |
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; |