aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-04-29 21:49:02 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:04 +0800
commitf2247d9031c513b000c7a35cf0215a233504a6e4 (patch)
treef19480d38565a702c27d555a211166726e80f930 /plugins
parent1622d0424c5b2b00240100cc123617e4dd6ed937 (diff)
downloadgsoc2013-evolution-f2247d9031c513b000c7a35cf0215a233504a6e4.tar
gsoc2013-evolution-f2247d9031c513b000c7a35cf0215a233504a6e4.tar.gz
gsoc2013-evolution-f2247d9031c513b000c7a35cf0215a233504a6e4.tar.bz2
gsoc2013-evolution-f2247d9031c513b000c7a35cf0215a233504a6e4.tar.lz
gsoc2013-evolution-f2247d9031c513b000c7a35cf0215a233504a6e4.tar.xz
gsoc2013-evolution-f2247d9031c513b000c7a35cf0215a233504a6e4.tar.zst
gsoc2013-evolution-f2247d9031c513b000c7a35cf0215a233504a6e4.zip
Adapt to extra arg in camel_session_get_service_by_url().
Diffstat (limited to 'plugins')
-rw-r--r--plugins/groupwise-features/install-shared.c2
-rw-r--r--plugins/groupwise-features/share-folder-common.c5
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/groupwise-features/install-shared.c b/plugins/groupwise-features/install-shared.c
index 3899dab95b..d43d6fa0fa 100644
--- a/plugins/groupwise-features/install-shared.c
+++ b/plugins/groupwise-features/install-shared.c
@@ -96,7 +96,7 @@ install_folder_response (EMFolderSelector *emfs, gint response, gpointer *data)
url = camel_url_new (uri, NULL);
if (url != NULL) {
service = camel_session_get_service_by_url (
- session, url);
+ session, url, CAMEL_PROVIDER_STORE);
camel_url_free (url);
}
diff --git a/plugins/groupwise-features/share-folder-common.c b/plugins/groupwise-features/share-folder-common.c
index 19d46bad0b..dcf470d06a 100644
--- a/plugins/groupwise-features/share-folder-common.c
+++ b/plugins/groupwise-features/share-folder-common.c
@@ -267,7 +267,7 @@ users_dialog_response (GtkWidget *dialog, gint response, struct ShareInfo *ssi)
url = camel_url_new (uri, NULL);
if (url != NULL) {
service = camel_session_get_service_by_url (
- CAMEL_SESSION (session), url);
+ session, url, CAMEL_PROVIDER_STORE);
camel_url_free (url);
}
@@ -319,7 +319,8 @@ new_folder_response (EMFolderSelector *emfs, gint response, EMFolderTreeModel *m
url = camel_url_new (uri, NULL);
if (url != NULL) {
- service = camel_session_get_service_by_url (session, url);
+ service = camel_session_get_service_by_url (
+ session, url, CAMEL_PROVIDER_STORE);
camel_url_free (url);
}