aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog3
-rw-r--r--shell/evolution-storage.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 17fe672815..3722620817 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,8 @@
2003-04-07 Dan Winship <danw@ximian.com>
+ * evolution-storage.c (evolution_storage_class_init): Fix arg
+ types on REMOVED_SHARED_FOLDER signal. #40888
+
* evolution-folder-selector-button.c (clicked): Desensitize the
window's top-level container rather than desensitizing the window
itself, which causes strange problems [#40854]. Also fix up the
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",