aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-11-04 05:21:45 +0800
committerDan Winship <danw@src.gnome.org>2000-11-04 05:21:45 +0800
commitf4b66877c038f460e9fef8aa48ca60d3b5e03b55 (patch)
tree983349ba669304a987b4bed7bbc4a3e962b89be6
parent7e5a820d0d80e66e1a50b9388351b21781377b1e (diff)
downloadgsoc2013-evolution-f4b66877c038f460e9fef8aa48ca60d3b5e03b55.tar
gsoc2013-evolution-f4b66877c038f460e9fef8aa48ca60d3b5e03b55.tar.gz
gsoc2013-evolution-f4b66877c038f460e9fef8aa48ca60d3b5e03b55.tar.bz2
gsoc2013-evolution-f4b66877c038f460e9fef8aa48ca60d3b5e03b55.tar.lz
gsoc2013-evolution-f4b66877c038f460e9fef8aa48ca60d3b5e03b55.tar.xz
gsoc2013-evolution-f4b66877c038f460e9fef8aa48ca60d3b5e03b55.tar.zst
gsoc2013-evolution-f4b66877c038f460e9fef8aa48ca60d3b5e03b55.zip
Fix the name of the signal passed to gtk_signal_new so that this actually
* evolution-storage-listener.c (class_init): Fix the name of the signal passed to gtk_signal_new so that this actually works. svn path=/trunk/; revision=6378
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/evolution-storage-listener.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 127b6d4d05..84e6db4f83 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-03 Dan Winship <danw@helixcode.com>
+
+ * evolution-storage-listener.c (class_init): Fix the name of the
+ signal passed to gtk_signal_new so that this actually works.
+
2000-11-01 Dan Winship <danw@helixcode.com>
* evolution-storage.c (evolution_storage_new_folder): Make this
diff --git a/shell/evolution-storage-listener.c b/shell/evolution-storage-listener.c
index 293dd972f5..d841987ba7 100644
--- a/shell/evolution-storage-listener.c
+++ b/shell/evolution-storage-listener.c
@@ -259,7 +259,7 @@ class_init (EvolutionStorageListenerClass *klass)
GTK_TYPE_STRING,
GTK_TYPE_POINTER);
- signals[UPDATE_FOLDER] = gtk_signal_new ("new_folder",
+ signals[UPDATE_FOLDER] = gtk_signal_new ("update_folder",
GTK_RUN_FIRST,
object_class->type,
GTK_SIGNAL_OFFSET (EvolutionStorageListenerClass, update_folder),