diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-20 16:41:11 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-20 16:41:11 +0800 |
commit | 69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7 (patch) | |
tree | 38f6d2a51ae75b108fa81c9dac865719207907fb /shell/evolution-wizard.c | |
parent | 3d98eeac31a4ff23c22c6ab0350fb0ba80725032 (diff) | |
download | gsoc2013-evolution-69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7.tar gsoc2013-evolution-69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7.tar.gz gsoc2013-evolution-69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7.tar.bz2 gsoc2013-evolution-69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7.tar.lz gsoc2013-evolution-69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7.tar.xz gsoc2013-evolution-69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7.tar.zst gsoc2013-evolution-69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7.zip |
use e_shell_ marshallers, and make sure STRING parameters map to *_STRING*
2002-11-20 Chris Toshok <toshok@ximian.com>
* e-folder-list.c (e_folder_list_class_init): use e_shell_
marshallers, and make sure STRING parameters map to *_STRING*
marshallers.
* evolution-wizard.c (evolution_wizard_class_init): same.
* evolution-storage.c (class_init): same.
* evolution-storage-set-view-listener.c (class_init): same.
* evolution-storage-listener.c (class_init): same.
* evolution-shell-view.c (class_init): same.
* evolution-session.c (class_init): same.
* evolution-folder-selector-button.c (class_init): same.
* evolution-config-control.c (class_init): same.
* evolution-activity-client.c (class_init): same.
* e-storage-set.c (class_init): same.
* e-shortcuts.c (class_init): same.
* e-shortcuts-view.c (class_init): same.
* e-shell.c (class_init): same.
* e-shell-view.c (class_init): same.
* e-shell-offline-handler.c (class_init): same.
* e-shell-folder-title-bar.c (class_init): same.
* e-shell-folder-selection-dialog.c (class_init): same.
* e-folder.c (class_init): same.
* e-shell-marshal.list: add all the STRING marshallers.
svn path=/trunk/; revision=18857
Diffstat (limited to 'shell/evolution-wizard.c')
-rw-r--r-- | shell/evolution-wizard.c | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/shell/evolution-wizard.c b/shell/evolution-wizard.c index 92b3ba163a..fdc1046c5f 100644 --- a/shell/evolution-wizard.c +++ b/shell/evolution-wizard.c @@ -36,6 +36,8 @@ #include "evolution-wizard.h" #include "Evolution.h" +#include "e-shell-marshal.h" + struct _EvolutionWizardPrivate { EvolutionWizardGetControlFn get_fn; BonoboEventSource *event_source; @@ -191,33 +193,39 @@ evolution_wizard_class_init (EvolutionWizardClass *klass) signals[NEXT] = gtk_signal_new ("next", GTK_RUN_FIRST, GTK_CLASS_TYPE (object_class), GTK_SIGNAL_OFFSET (EvolutionWizardClass, next), - gtk_marshal_NONE__INT, GTK_TYPE_NONE, - 1, GTK_TYPE_INT); + e_shell_marshal_NONE__INT, + GTK_TYPE_NONE, 1, + GTK_TYPE_INT); signals[PREPARE] = gtk_signal_new ("prepare", GTK_RUN_FIRST, GTK_CLASS_TYPE (object_class), GTK_SIGNAL_OFFSET (EvolutionWizardClass, prepare), - gtk_marshal_NONE__INT, GTK_TYPE_NONE, - 1, GTK_TYPE_INT); + e_shell_marshal_NONE__INT, + GTK_TYPE_NONE, 1, + GTK_TYPE_INT); signals[BACK] = gtk_signal_new ("back", GTK_RUN_FIRST, GTK_CLASS_TYPE (object_class), GTK_SIGNAL_OFFSET (EvolutionWizardClass, back), - gtk_marshal_NONE__INT, GTK_TYPE_NONE, - 1, GTK_TYPE_INT); + e_shell_marshal_NONE__INT, + GTK_TYPE_NONE, 1, + GTK_TYPE_INT); signals[FINISH] = gtk_signal_new ("finish", GTK_RUN_FIRST, GTK_CLASS_TYPE (object_class), GTK_SIGNAL_OFFSET (EvolutionWizardClass, finish), - gtk_marshal_NONE__INT, GTK_TYPE_NONE, - 1, GTK_TYPE_INT); + e_shell_marshal_NONE__INT, + GTK_TYPE_NONE, 1, + GTK_TYPE_INT); signals[CANCEL] = gtk_signal_new ("cancel", GTK_RUN_FIRST, GTK_CLASS_TYPE (object_class), GTK_SIGNAL_OFFSET (EvolutionWizardClass, cancel), - gtk_marshal_NONE__INT, GTK_TYPE_NONE, - 1, GTK_TYPE_INT); + e_shell_marshal_NONE__INT, + GTK_TYPE_NONE, 1, + GTK_TYPE_INT); signals[HELP] = gtk_signal_new ("help", GTK_RUN_FIRST, GTK_CLASS_TYPE (object_class), GTK_SIGNAL_OFFSET (EvolutionWizardClass, help), - gtk_marshal_NONE__INT, GTK_TYPE_NONE, - 1, GTK_TYPE_INT); + e_shell_marshal_NONE__INT, + GTK_TYPE_NONE, 1, + GTK_TYPE_INT); parent_class = gtk_type_class (PARENT_TYPE); |