diff options
author | Milan Crha <mcrha@redhat.com> | 2009-08-21 18:33:28 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-08-21 18:33:28 +0800 |
commit | dc3973b535b902ff1e7b69a5c71a832657de22a7 (patch) | |
tree | 6d627089149a8cf2d88bd808cf63bfdf7f6205dc /calendar/gui | |
parent | 7f0550bcda96927de8086ccc1cf1d1bfdfffe97b (diff) | |
download | gsoc2013-evolution-dc3973b535b902ff1e7b69a5c71a832657de22a7.tar.gz gsoc2013-evolution-dc3973b535b902ff1e7b69a5c71a832657de22a7.tar.zst gsoc2013-evolution-dc3973b535b902ff1e7b69a5c71a832657de22a7.zip |
Bug #592551 - Build break fix caused by bug #581288
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/memo-page.c | 2 | ||||
-rw-r--r-- | calendar/gui/e-meeting-list-view.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/memo-page.c b/calendar/gui/dialogs/memo-page.c index 83cd00a911..8026a467ee 100644 --- a/calendar/gui/dialogs/memo-page.c +++ b/calendar/gui/dialogs/memo-page.c @@ -437,7 +437,7 @@ fill_comp_with_recipients (ENameSelector *name_selector, ECalComponent *comp) gchar *uri = e_contact_get (contact, E_CONTACT_BOOK_URI); dialog = e_name_selector_peek_dialog (name_selector); - c_store = dialog->name_selector_model->contact_store; + c_store = e_name_selector_dialog_peek_model (dialog)->contact_store; books = e_contact_store_get_books (c_store); for (l = books; l; l = l->next) { diff --git a/calendar/gui/e-meeting-list-view.c b/calendar/gui/e-meeting-list-view.c index d4b87fc270..29a4f535d3 100644 --- a/calendar/gui/e-meeting-list-view.c +++ b/calendar/gui/e-meeting-list-view.c @@ -774,7 +774,7 @@ process_section (EMeetingListView *view, GList *destinations, icalparameter_role gchar *uri = e_contact_get (contact, E_CONTACT_BOOK_URI); dialog = e_name_selector_peek_dialog (view->priv->name_selector); - c_store = dialog->name_selector_model->contact_store; + c_store = e_name_selector_dialog_peek_model (dialog)->contact_store; books = e_contact_store_get_books (c_store); for (l = books; l; l = l->next) { |