aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-storage.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-20 16:41:11 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-20 16:41:11 +0800
commit69dd24294f4e45d278ae6ef34ae19c1fda5dc1b7 (patch)
tree38f6d2a51ae75b108fa81c9dac865719207907fb /shell/evolution-storage.c
parent3d98eeac31a4ff23c22c6ab0350fb0ba80725032 (diff)
downloadgsoc2013-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-storage.c')
-rw-r--r--shell/evolution-storage.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c
index 9722e5aa28..60261c8847 100644
--- a/shell/evolution-storage.c
+++ b/shell/evolution-storage.c
@@ -711,7 +711,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
create_folder),
- e_shell_marshal_NONE__POINTER_POINTER_POINTER_POINTER_POINTER,
+ e_shell_marshal_NONE__POINTER_STRING_STRING_STRING_STRING,
GTK_TYPE_NONE, 5,
GTK_TYPE_POINTER,
GTK_TYPE_STRING,
@@ -724,7 +724,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
remove_folder),
- e_shell_marshal_NONE__POINTER_POINTER_POINTER,
+ e_shell_marshal_NONE__POINTER_STRING_STRING,
GTK_TYPE_NONE, 3,
GTK_TYPE_POINTER,
GTK_TYPE_STRING,
@@ -735,7 +735,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
xfer_folder),
- e_shell_marshal_NONE__POINTER_POINTER_POINTER_BOOL,
+ e_shell_marshal_NONE__POINTER_STRING_STRING_BOOL,
GTK_TYPE_NONE, 4,
GTK_TYPE_POINTER,
GTK_TYPE_STRING,
@@ -747,7 +747,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
update_folder),
- e_shell_marshal_NONE__POINTER_INT,
+ e_shell_marshal_NONE__STRING_INT,
GTK_TYPE_NONE, 2,
GTK_TYPE_STRING,
GTK_TYPE_INT);
@@ -757,7 +757,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
open_folder),
- e_shell_marshal_NONE__POINTER,
+ e_shell_marshal_NONE__STRING,
GTK_TYPE_NONE, 1,
GTK_TYPE_STRING);
@@ -766,7 +766,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
discover_shared_folder),
- e_shell_marshal_NONE__POINTER_POINTER_POINTER,
+ e_shell_marshal_NONE__POINTER_STRING_STRING,
GTK_TYPE_NONE, 3,
GTK_TYPE_POINTER,
GTK_TYPE_STRING,
@@ -777,7 +777,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
cancel_discover_shared_folder),
- e_shell_marshal_NONE__POINTER_POINTER,
+ e_shell_marshal_NONE__STRING_STRING,
GTK_TYPE_NONE, 2,
GTK_TYPE_STRING,
GTK_TYPE_STRING);
@@ -787,7 +787,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
remove_shared_folder),
- e_shell_marshal_NONE__POINTER_POINTER,
+ e_shell_marshal_NONE__STRING_POINTER,
GTK_TYPE_NONE, 2,
GTK_TYPE_STRING,
GTK_TYPE_POINTER);
@@ -797,7 +797,7 @@ class_init (EvolutionStorageClass *klass)
GTK_CLASS_TYPE (object_class),
GTK_SIGNAL_OFFSET (EvolutionStorageClass,
show_folder_properties),
- e_shell_marshal_NONE__POINTER_INT_INT,
+ e_shell_marshal_NONE__STRING_INT_INT,
GTK_TYPE_NONE, 3,
GTK_TYPE_STRING,
GTK_TYPE_INT,