diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-12-08 11:27:16 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-12-08 11:27:16 +0800 |
commit | 60978976388e00a611f2aeb87c9b27e67a2b0f05 (patch) | |
tree | 9cdbc06a21e009ae81248475ca14326e4454a9a9 /mail/e-mail-store.c | |
parent | dcc3d40b2c0a78ba75ccae41619cb309ec6006c5 (diff) | |
download | gsoc2013-evolution-60978976388e00a611f2aeb87c9b27e67a2b0f05.tar.gz gsoc2013-evolution-60978976388e00a611f2aeb87c9b27e67a2b0f05.tar.zst gsoc2013-evolution-60978976388e00a611f2aeb87c9b27e67a2b0f05.zip |
mail_folder_cache_note_store: CamelSession arg is unnecessary.
The CamelStore argument already has the CamelSession:
session = camel_service_get_session (CAMEL_SERVICE (store));
Diffstat (limited to 'mail/e-mail-store.c')
-rw-r--r-- | mail/e-mail-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-mail-store.c b/mail/e-mail-store.c index 2d180fe387..283a8608e9 100644 --- a/mail/e-mail-store.c +++ b/mail/e-mail-store.c @@ -204,7 +204,7 @@ mail_store_add (EMailSession *session, em_folder_tree_model_add_store (default_model, store); mail_folder_cache_note_store ( - folder_cache, CAMEL_SESSION (session), store, NULL, + folder_cache, store, NULL, mail_store_note_store_cb, store_info_ref (store_info)); } |