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/mail-send-recv.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/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 69089f97e8..44c5158631 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -1089,9 +1089,7 @@ receive_update_got_store (CamelStore *store, if (store) { mail_folder_cache_note_store ( - folder_cache, - CAMEL_SESSION (session), - store, info->cancellable, + folder_cache, store, info->cancellable, receive_update_got_folderinfo, info); } else { receive_done (info); |