aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-wizard.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/evolution-wizard.c')
-rw-r--r--shell/evolution-wizard.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/evolution-wizard.c b/shell/evolution-wizard.c
index 2582b8d6dd..92b3ba163a 100644
--- a/shell/evolution-wizard.c
+++ b/shell/evolution-wizard.c
@@ -155,6 +155,14 @@ impl_GNOME_Evolution_Wizard_notifyAction (PortableServer_Servant servant,
static void
+impl_dispose (GObject *object)
+{
+ /* (Nothing to do here.) */
+
+ (* G_OBJECT_CLASS (parent_class)->dispose) (object);
+}
+
+static void
impl_finalize (GObject *object)
{
EvolutionWizard *wizard;
@@ -177,6 +185,7 @@ evolution_wizard_class_init (EvolutionWizardClass *klass)
POA_GNOME_Evolution_Wizard__epv *epv = &klass->epv;
object_class = G_OBJECT_CLASS (klass);
+ object_class->dispose = impl_dispose;
object_class->finalize = impl_finalize;
signals[NEXT] = gtk_signal_new ("next", GTK_RUN_FIRST,