diff options
author | Dan Winship <danw@src.gnome.org> | 2001-10-12 02:53:41 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-10-12 02:53:41 +0800 |
commit | 1a4d87b9d7830069c3de2cd345556fe83b6779e5 (patch) | |
tree | 0a86fc0fd8ae78ce43af14cb2592f368496d1c47 /shell/e-local-storage.c | |
parent | a035cd8f338c2e7541389c6eb5ed0356dd68a603 (diff) | |
download | gsoc2013-evolution-1a4d87b9d7830069c3de2cd345556fe83b6779e5.tar.gz gsoc2013-evolution-1a4d87b9d7830069c3de2cd345556fe83b6779e5.tar.zst gsoc2013-evolution-1a4d87b9d7830069c3de2cd345556fe83b6779e5.zip |
Remove "display_name" arg from update methods. It was only there to do the
* Evolution-Storage.idl: Remove "display_name" arg from update
methods. It was only there to do the "Inbox (5)" hack, which is
supported directly now.
* evolution-storage.c (impl_Storage_updateFolder): no longer takes
display_name.
(evolution_storage_update_folder,
evolution_storage_update_folder_by_uri): Likewise.
(class_init): Update signal signature.
* evolution-storage-listener.c
(impl_GNOME_Evolution_StorageListener_notifyFolderUpdated): No
longer takes display_name, but make it pass the unread_count along
in the signal it emits.
(class_init): Update signal signature.
* e-local-storage.c (bonobo_interface_update_folder_cb):
* e-corba-storage.c (impl_StorageListener_notifyFolderUpdated): No
longer take display_name.
svn path=/trunk/; revision=13587
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r-- | shell/e-local-storage.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index c7fcf730d7..3389a0be30 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -951,7 +951,6 @@ bonobo_interface_remove_folder_cb (EvolutionStorage *storage, static void bonobo_interface_update_folder_cb (EvolutionStorage *storage, const char *path, - const char *display_name, int unread_count, void *data) { @@ -964,9 +963,7 @@ bonobo_interface_update_folder_cb (EvolutionStorage *storage, if (folder == NULL) return; - /* e_folder_set_name (folder, display_name); */ e_folder_set_unread_count (folder, unread_count); - return; } |