diff options
author | Dan Winship <danw@src.gnome.org> | 2003-04-08 06:12:56 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-04-08 06:12:56 +0800 |
commit | b40727e44b9a820998de206a931041adecc01357 (patch) | |
tree | c298115c165310b0110957bfbfd7f35dfc2b667f /shell/evolution-storage.c | |
parent | 3af776f2431fe5db6b7c16a94535b544ea33029c (diff) | |
download | gsoc2013-evolution-b40727e44b9a820998de206a931041adecc01357.tar.gz gsoc2013-evolution-b40727e44b9a820998de206a931041adecc01357.tar.zst gsoc2013-evolution-b40727e44b9a820998de206a931041adecc01357.zip |
Fix arg types on REMOVED_SHARED_FOLDER signal. #40888
* evolution-storage.c (evolution_storage_class_init): Fix arg
types on REMOVED_SHARED_FOLDER signal. #40888
svn path=/trunk/; revision=20734
Diffstat (limited to 'shell/evolution-storage.c')
-rw-r--r-- | shell/evolution-storage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c index aa11130911..df1f29879b 100644 --- a/shell/evolution-storage.c +++ b/shell/evolution-storage.c @@ -799,10 +799,10 @@ evolution_storage_class_init (EvolutionStorageClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (EvolutionStorageClass, remove_shared_folder), NULL, NULL, - e_shell_marshal_NONE__STRING_POINTER, + e_shell_marshal_NONE__POINTER_STRING, G_TYPE_NONE, 2, - G_TYPE_STRING, - G_TYPE_POINTER); + G_TYPE_POINTER, + G_TYPE_STRING); signals[SHOW_FOLDER_PROPERTIES] = g_signal_new ("show_folder_properties", |