aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/e-book-shell-view.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-07 20:06:09 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-07 20:06:09 +0800
commit84080821d62db3358fcaee4adfc24782ed7d4318 (patch)
tree5ea85fa01632d055e41ea45a71906067d5030528 /addressbook/gui/component/e-book-shell-view.c
parentcaa862135195b828d2e8355436fdd6eb0ec2443e (diff)
downloadgsoc2013-evolution-84080821d62db3358fcaee4adfc24782ed7d4318.tar
gsoc2013-evolution-84080821d62db3358fcaee4adfc24782ed7d4318.tar.gz
gsoc2013-evolution-84080821d62db3358fcaee4adfc24782ed7d4318.tar.bz2
gsoc2013-evolution-84080821d62db3358fcaee4adfc24782ed7d4318.tar.lz
gsoc2013-evolution-84080821d62db3358fcaee4adfc24782ed7d4318.tar.xz
gsoc2013-evolution-84080821d62db3358fcaee4adfc24782ed7d4318.tar.zst
gsoc2013-evolution-84080821d62db3358fcaee4adfc24782ed7d4318.zip
Adapt addressbook to EShellBackend changes.
Builds, but not tested. Use as a reference for other backends.
Diffstat (limited to 'addressbook/gui/component/e-book-shell-view.c')
-rw-r--r--addressbook/gui/component/e-book-shell-view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/gui/component/e-book-shell-view.c b/addressbook/gui/component/e-book-shell-view.c
index 9a6736b178..7520c1e304 100644
--- a/addressbook/gui/component/e-book-shell-view.c
+++ b/addressbook/gui/component/e-book-shell-view.c
@@ -102,7 +102,7 @@ static void
book_shell_view_constructed (GObject *object)
{
EBookShellView *book_shell_view;
- EBookShellModule *book_shell_module;
+ EBookShellBackend *book_shell_backend;
ESourceList *source_list;
/* Chain up to parent's constructed() method. */
@@ -111,8 +111,8 @@ book_shell_view_constructed (GObject *object)
book_shell_view = E_BOOK_SHELL_VIEW (object);
e_book_shell_view_private_constructed (book_shell_view);
- book_shell_module = book_shell_view->priv->book_shell_module;
- source_list = e_book_shell_module_get_source_list (book_shell_module);
+ book_shell_backend = book_shell_view->priv->book_shell_backend;
+ source_list = e_book_shell_backend_get_source_list (book_shell_backend);
g_signal_connect_swapped (
source_list, "changed",