aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-sidebar.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-08-16 05:36:43 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-09-14 20:08:50 +0800
commit08e62014fe4a11e3c9b4c4c46339684af36ef5ef (patch)
treef4ec2dd6001cc5f711c33d1e0da08f529f0381a7 /mail/e-mail-sidebar.c
parentc34f5d0503572d1942671d9047ee56d25e3d40ff (diff)
downloadgsoc2013-evolution-08e62014fe4a11e3c9b4c4c46339684af36ef5ef.tar
gsoc2013-evolution-08e62014fe4a11e3c9b4c4c46339684af36ef5ef.tar.gz
gsoc2013-evolution-08e62014fe4a11e3c9b4c4c46339684af36ef5ef.tar.bz2
gsoc2013-evolution-08e62014fe4a11e3c9b4c4c46339684af36ef5ef.tar.lz
gsoc2013-evolution-08e62014fe4a11e3c9b4c4c46339684af36ef5ef.tar.xz
gsoc2013-evolution-08e62014fe4a11e3c9b4c4c46339684af36ef5ef.tar.zst
gsoc2013-evolution-08e62014fe4a11e3c9b4c4c46339684af36ef5ef.zip
Adapt to new CamelSubscribable interface.
Diffstat (limited to 'mail/e-mail-sidebar.c')
-rw-r--r--mail/e-mail-sidebar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/e-mail-sidebar.c b/mail/e-mail-sidebar.c
index d2179057a5..35048f8293 100644
--- a/mail/e-mail-sidebar.c
+++ b/mail/e-mail-sidebar.c
@@ -404,8 +404,8 @@ mail_sidebar_check_state (EMailSidebar *sidebar)
state |= E_MAIL_SIDEBAR_FOLDER_IS_STORE;
if (is_trash)
state |= E_MAIL_SIDEBAR_FOLDER_IS_TRASH;
- if (camel_store_supports_subscriptions (store))
- state |= E_MAIL_SIDEBAR_STORE_SUPPORTS_SUBSCRIPTIONS;
+ if (CAMEL_IS_SUBSCRIBABLE (store))
+ state |= E_MAIL_SIDEBAR_STORE_IS_SUBSCRIBABLE;
g_free (full_name);