aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-meeting-list-view.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-04-20 01:35:34 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-04-20 01:36:13 +0800
commit1ff91f837a1508d7c3f327a3fc796534411270c2 (patch)
treec50463501e993d0ee5c903784a19a17492e361e4 /calendar/gui/e-meeting-list-view.c
parent3bdad9ecb7ebf5020fe443fec1f1440e0afeb930 (diff)
downloadgsoc2013-evolution-1ff91f837a1508d7c3f327a3fc796534411270c2.tar
gsoc2013-evolution-1ff91f837a1508d7c3f327a3fc796534411270c2.tar.gz
gsoc2013-evolution-1ff91f837a1508d7c3f327a3fc796534411270c2.tar.bz2
gsoc2013-evolution-1ff91f837a1508d7c3f327a3fc796534411270c2.tar.lz
gsoc2013-evolution-1ff91f837a1508d7c3f327a3fc796534411270c2.tar.xz
gsoc2013-evolution-1ff91f837a1508d7c3f327a3fc796534411270c2.tar.zst
gsoc2013-evolution-1ff91f837a1508d7c3f327a3fc796534411270c2.zip
Adapt to libedataserverui API changes.
Diffstat (limited to 'calendar/gui/e-meeting-list-view.c')
-rw-r--r--calendar/gui/e-meeting-list-view.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/e-meeting-list-view.c b/calendar/gui/e-meeting-list-view.c
index 0e48f7cb32..9920de85e1 100644
--- a/calendar/gui/e-meeting-list-view.c
+++ b/calendar/gui/e-meeting-list-view.c
@@ -771,12 +771,14 @@ process_section (EMeetingListView *view, GList *destinations, icalparameter_role
if (contact && e_contact_get (contact , E_CONTACT_IS_LIST)) {
EBook *book = NULL;
ENameSelectorDialog *dialog;
+ ENameSelectorModel *model;
EContactStore *c_store;
GList *books, *l;
gchar *uri = e_contact_get (contact, E_CONTACT_BOOK_URI);
dialog = e_name_selector_peek_dialog (view->priv->name_selector);
- c_store = e_name_selector_dialog_peek_model (dialog)->contact_store;
+ model = e_name_selector_dialog_peek_model (dialog);
+ c_store = e_name_selector_model_peek_contact_store (model);
books = e_contact_store_get_books (c_store);
for (l = books; l; l = l->next) {