diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-03-02 03:30:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-03-02 07:16:07 +0800 |
commit | 4ff90f2bfd95337040616cae4b3bdddff033b5d6 (patch) | |
tree | 37d3acd7835e4366cc367dc904e43915c7c11f9b /modules/addressbook | |
parent | 977be20ced747224c0e08d565f961f0fa8d0baf8 (diff) | |
download | gsoc2013-evolution-4ff90f2bfd95337040616cae4b3bdddff033b5d6.tar.gz gsoc2013-evolution-4ff90f2bfd95337040616cae4b3bdddff033b5d6.tar.zst gsoc2013-evolution-4ff90f2bfd95337040616cae4b3bdddff033b5d6.zip |
Use EClientComboBox where appropriate.
Basically any place where we use both EClient and ESourceComboBox.
Diffstat (limited to 'modules/addressbook')
-rw-r--r-- | modules/addressbook/e-book-shell-backend.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/addressbook/e-book-shell-backend.c b/modules/addressbook/e-book-shell-backend.c index 30a8691fc9..8d309a8395 100644 --- a/modules/addressbook/e-book-shell-backend.c +++ b/modules/addressbook/e-book-shell-backend.c @@ -326,26 +326,26 @@ static void book_shell_backend_quick_add_email_cb (EShell *shell, const gchar *email) { - ESourceRegistry *registry; + EClientCache *client_cache; /* XXX This is an ugly hack but it's the only way I could think * of to integrate this feature with other shell modules. */ - registry = e_shell_get_registry (shell); - e_contact_quick_add_email (registry, email, NULL, NULL); + client_cache = e_shell_get_client_cache (shell); + e_contact_quick_add_email (client_cache, email, NULL, NULL); } static void book_shell_backend_quick_add_vcard_cb (EShell *shell, const gchar *vcard) { - ESourceRegistry *registry; + EClientCache *client_cache; /* XXX This is an ugly hack but it's the only way I could think * of to integrate this feature with other shell modules. */ - registry = e_shell_get_registry (shell); - e_contact_quick_add_vcard (registry, vcard, NULL, NULL); + client_cache = e_shell_get_client_cache (shell); + e_contact_quick_add_vcard (client_cache, vcard, NULL, NULL); } static gboolean |