From 397aeade0545457dae034b0287049aa1cbeed782 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 20 Apr 2011 19:06:35 -0400 Subject: Adapt to CamelService changes. --- widgets/misc/e-account-combo-box.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'widgets/misc') diff --git a/widgets/misc/e-account-combo-box.c b/widgets/misc/e-account-combo-box.c index 40504a0083..e8b0bee6c5 100644 --- a/widgets/misc/e-account-combo-box.c +++ b/widgets/misc/e-account-combo-box.c @@ -106,8 +106,7 @@ account_combo_box_choose_account (EAccountComboBox *combo_box) static gboolean account_combo_box_test_account (EAccount *account) { - CamelStore *store; - const gchar *url; + CamelService *service; gboolean writable = FALSE; /* Account must be enabled. */ @@ -123,12 +122,10 @@ account_combo_box_test_account (EAccount *account) return TRUE; /* Account must be writable. */ - url = e_account_get_string (account, E_ACCOUNT_SOURCE_URL); - store = CAMEL_STORE (camel_session_get_service ( - camel_session, url, CAMEL_PROVIDER_STORE, NULL)); - if (store != NULL) { + service = camel_session_get_service (camel_session, account->uid); + if (CAMEL_IS_STORE (service)) { + CamelStore *store = CAMEL_STORE (service); writable = (store->mode & CAMEL_STORE_WRITE); - g_object_unref (store); } return writable; -- cgit v1.2.3