diff options
Diffstat (limited to 'addressbook/gui/merging/eab-contact-merging.h')
-rw-r--r-- | addressbook/gui/merging/eab-contact-merging.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/addressbook/gui/merging/eab-contact-merging.h b/addressbook/gui/merging/eab-contact-merging.h index a922d6b9fb..a4f62e80c0 100644 --- a/addressbook/gui/merging/eab-contact-merging.h +++ b/addressbook/gui/merging/eab-contact-merging.h @@ -27,6 +27,7 @@ #define __E_CONTACT_MERGING_H__ #include <libebook/e-book-client.h> +#include <libedataserver/e-source-registry.h> G_BEGIN_DECLS @@ -43,17 +44,20 @@ typedef void (*EABMergingContactAsyncCallback) EContact *contact, gpointer closure); -gboolean eab_merging_book_add_contact (EBookClient *book_client, +gboolean eab_merging_book_add_contact (ESourceRegistry *registry, + EBookClient *book_client, EContact *contact, EABMergingIdAsyncCallback cb, gpointer closure); -gboolean eab_merging_book_modify_contact (EBookClient *book_client, +gboolean eab_merging_book_modify_contact (ESourceRegistry *registry, + EBookClient *book_client, EContact *contact, EABMergingAsyncCallback cb, gpointer closure); -gboolean eab_merging_book_find_contact (EBookClient *book_client, +gboolean eab_merging_book_find_contact (ESourceRegistry *registry, + EBookClient *book_client, EContact *contact, EABMergingContactAsyncCallback cb, gpointer closure); |