aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-wizard.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-02 16:25:03 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-02 16:25:03 +0800
commit9c73777f2268b5bf2622f893e2a3ba7d0f720572 (patch)
treef81b79f19b87f84b4429d329b3fc0f9ff7946060 /shell/evolution-wizard.c
parent236c15d106b4e740d4e3996e0649334ca8e13876 (diff)
downloadgsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar
gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar.gz
gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar.bz2
gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar.lz
gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar.xz
gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar.zst
gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.zip
First big sync of my GNOME 2 porting work (incomplete, and still
pretty broken). Weeeeee! svn path=/trunk/; revision=18503
Diffstat (limited to 'shell/evolution-wizard.c')
-rw-r--r--shell/evolution-wizard.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/shell/evolution-wizard.c b/shell/evolution-wizard.c
index 07ad4fe0b0..9b036e517a 100644
--- a/shell/evolution-wizard.c
+++ b/shell/evolution-wizard.c
@@ -171,38 +171,36 @@ evolution_wizard_class_init (EvolutionWizardClass *klass)
object_class->destroy = evolution_wizard_destroy;
signals[NEXT] = gtk_signal_new ("next", GTK_RUN_FIRST,
- object_class->type,
+ GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionWizardClass, next),
gtk_marshal_NONE__INT, GTK_TYPE_NONE,
1, GTK_TYPE_INT);
signals[PREPARE] = gtk_signal_new ("prepare", GTK_RUN_FIRST,
- object_class->type,
+ GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionWizardClass, prepare),
gtk_marshal_NONE__INT, GTK_TYPE_NONE,
1, GTK_TYPE_INT);
signals[BACK] = gtk_signal_new ("back", GTK_RUN_FIRST,
- object_class->type,
+ GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionWizardClass, back),
gtk_marshal_NONE__INT, GTK_TYPE_NONE,
1, GTK_TYPE_INT);
signals[FINISH] = gtk_signal_new ("finish", GTK_RUN_FIRST,
- object_class->type,
+ GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionWizardClass, finish),
gtk_marshal_NONE__INT, GTK_TYPE_NONE,
1, GTK_TYPE_INT);
signals[CANCEL] = gtk_signal_new ("cancel", GTK_RUN_FIRST,
- object_class->type,
+ GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionWizardClass, cancel),
gtk_marshal_NONE__INT, GTK_TYPE_NONE,
1, GTK_TYPE_INT);
signals[HELP] = gtk_signal_new ("help", GTK_RUN_FIRST,
- object_class->type,
+ GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionWizardClass, help),
gtk_marshal_NONE__INT, GTK_TYPE_NONE,
1, GTK_TYPE_INT);
- gtk_object_class_add_signals (object_class, signals, LAST_SIGNAL);
-
parent_class = gtk_type_class (PARENT_TYPE);
epv->_get_pageCount = impl_GNOME_Evolution_Wizard__get_pageCount;
@@ -296,7 +294,7 @@ evolution_wizard_set_buttons_sensitive (EvolutionWizard *wizard,
}
s = back_sensitive << 2 | next_sensitive << 1 | cancel_sensitive;
- any._type = (CORBA_TypeCode) TC_short;
+ any._type = (CORBA_TypeCode) TC_CORBA_short;
any._value = &s;
bonobo_event_source_notify_listeners (priv->event_source,
@@ -331,7 +329,7 @@ evolution_wizard_set_show_finish (EvolutionWizard *wizard,
}
b = show_finish;
- any._type = (CORBA_TypeCode) TC_boolean;
+ any._type = (CORBA_TypeCode) TC_CORBA_boolean;
any._value = &b;
bonobo_event_source_notify_listeners (priv->event_source,
@@ -369,7 +367,7 @@ evolution_wizard_set_page (EvolutionWizard *wizard,
}
s = page_number;
- any._type = (CORBA_TypeCode) TC_short;
+ any._type = (CORBA_TypeCode) TC_CORBA_short;
any._value = &s;
bonobo_event_source_notify_listeners (priv->event_source,