diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/evolution-storage-listener.c | 2 |
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), |