aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/merging
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/gui/merging')
-rw-r--r--addressbook/gui/merging/eab-contact-compare.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/addressbook/gui/merging/eab-contact-compare.c b/addressbook/gui/merging/eab-contact-compare.c
index 33a696261e..f4f9afe1a7 100644
--- a/addressbook/gui/merging/eab-contact-compare.c
+++ b/addressbook/gui/merging/eab-contact-compare.c
@@ -29,6 +29,7 @@
#include <ctype.h>
#include <string.h>
#include "util/eab-book-util.h"
+#include "../component/addressbook.h"
#include "eab-contact-compare.h"
/* This is an "optimistic" combiner: the best of the two outcomes is
@@ -707,7 +708,7 @@ eab_contact_locate_match (EContact *contact, EABContactMatchQueryCallback cb, gp
info->closure = closure;
info->avoid = NULL;
- addressbook_load_default_book (use_common_book_cb, info);
+ addressbook_load_default_book ((EBookCallback) use_common_book_cb, info);
}
/**
@@ -740,6 +741,6 @@ eab_contact_locate_match_full (EBook *book, EContact *contact, GList *avoid, EAB
if (book)
use_common_book_cb (book, info);
else
- addressbook_load_default_book (use_common_book_cb, info);
+ addressbook_load_default_book ((EBookCallback) use_common_book_cb, info);
}