diff options
author | Dan Winship <danw@src.gnome.org> | 2001-08-15 00:37:59 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-08-15 00:37:59 +0800 |
commit | 250946204244dce6c91d99ce4f573ae3de2dcb7a (patch) | |
tree | a98c9f5768fa301bf7dbc7b4f988bd9356009fcd /shell/e-corba-storage.c | |
parent | f604364042e94ed58b2cbce5746791d88e7c0776 (diff) | |
download | gsoc2013-evolution-250946204244dce6c91d99ce4f573ae3de2dcb7a.tar.gz gsoc2013-evolution-250946204244dce6c91d99ce4f573ae3de2dcb7a.tar.zst gsoc2013-evolution-250946204244dce6c91d99ce4f573ae3de2dcb7a.zip |
Use the passed-in unread_count.
* evolution-storage.c (evolution_storage_new_folder): Use the
passed-in unread_count.
* e-corba-storage.c (impl_StorageListener_notifyFolderCreated):
Pass the passed-in unread_count to e_storage_new_folder.
svn path=/trunk/; revision=12018
Diffstat (limited to 'shell/e-corba-storage.c')
-rw-r--r-- | shell/e-corba-storage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/e-corba-storage.c b/shell/e-corba-storage.c index 5745ee8fcf..394a06cf3a 100644 --- a/shell/e-corba-storage.c +++ b/shell/e-corba-storage.c @@ -110,6 +110,7 @@ impl_StorageListener_notifyFolderCreated (PortableServer_Servant servant, folder->description); e_folder_set_physical_uri (e_folder, folder->physical_uri); + e_folder_set_unread_count (e_folder, folder->unread_count); if (! e_storage_new_folder (storage, path, e_folder)) { g_print ("Cannot register folder -- %s %s\n", path, folder->display_name); |