aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/util
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-06-18 06:00:00 +0800
committerChris Toshok <toshok@src.gnome.org>2004-06-18 06:00:00 +0800
commitb7ed99720d5156cf384ade2d970e2178f672a8d5 (patch)
tree028338415b64a2069f0bce1838ac2d141565a387 /addressbook/util
parentb5c3d6571fd0354a36984f85aa159f377d3f8c74 (diff)
downloadgsoc2013-evolution-b7ed99720d5156cf384ade2d970e2178f672a8d5.tar
gsoc2013-evolution-b7ed99720d5156cf384ade2d970e2178f672a8d5.tar.gz
gsoc2013-evolution-b7ed99720d5156cf384ade2d970e2178f672a8d5.tar.bz2
gsoc2013-evolution-b7ed99720d5156cf384ade2d970e2178f672a8d5.tar.lz
gsoc2013-evolution-b7ed99720d5156cf384ade2d970e2178f672a8d5.tar.xz
gsoc2013-evolution-b7ed99720d5156cf384ade2d970e2178f672a8d5.tar.zst
gsoc2013-evolution-b7ed99720d5156cf384ade2d970e2178f672a8d5.zip
EBookContactsCallback -> EBookListCallback. (eab_nickname_query): same.
2004-06-17 Chris Toshok <toshok@ximian.com> * util/eab-book-util.c (eab_name_and_email_query): EBookContactsCallback -> EBookListCallback. (eab_nickname_query): same. * printing/e-contact-print.c: e-book-async.h -> e-book.h * gui/widgets/eab-vcard-control.c: e-book-async.h -> e-book.h. * gui/widgets/e-addressbook-model.h: e-book-async.h -> e-book.h. * gui/widgets/eab-popup-control.h: e-book-async.h -> e-book.h. * gui/widgets/eab-popup-control.c: remove e-book-async.h include. * gui/merging/eab-contact-merging.h: e-book-async.h -> e-book.h. * gui/contact-editor/e-contact-editor.h: e-book-async.h -> e-book.h. * gui/contact-editor/e-contact-editor.h: same. * gui/contact-list-editor/e-contact-list-editor.h: same. * gui/contact-list-editor/e-contact-list-model.h: remove include of e-book-async.h * gui/component/select-names/e-select-names-completion.h: include e-book.h, not e-book-async.h * gui/component/select-names/e-select-names-model.c: same. * gui/component/select-names/e-select-names.c: same. * gui/component/addressbook-migrate.c: include e-book.h, not e-book-async.h * gui/component/addressbook-view.c: same. * gui/component/addressbook.h: same. * gui/component/addressbook.c: remove include e-book-async.h. svn path=/trunk/; revision=26402
Diffstat (limited to 'addressbook/util')
-rw-r--r--addressbook/util/eab-book-util.c4
-rw-r--r--addressbook/util/eab-book-util.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/addressbook/util/eab-book-util.c b/addressbook/util/eab-book-util.c
index 7482ad2807..53a09c323b 100644
--- a/addressbook/util/eab-book-util.c
+++ b/addressbook/util/eab-book-util.c
@@ -74,7 +74,7 @@ guint
eab_name_and_email_query (EBook *book,
const gchar *name,
const gchar *email,
- EBookContactsCallback cb,
+ EBookListCallback cb,
gpointer closure)
{
gchar *email_query=NULL, *name_query=NULL;
@@ -153,7 +153,7 @@ eab_name_and_email_query (EBook *book,
guint
eab_nickname_query (EBook *book,
const char *nickname,
- EBookContactsCallback cb,
+ EBookListCallback cb,
gpointer closure)
{
EBookQuery *query;
diff --git a/addressbook/util/eab-book-util.h b/addressbook/util/eab-book-util.h
index 7fda98adf3..ae3a45ef35 100644
--- a/addressbook/util/eab-book-util.h
+++ b/addressbook/util/eab-book-util.h
@@ -30,7 +30,7 @@
#include <bonobo/bonobo-object.h>
#include <bonobo/bonobo-moniker-util.h>
-#include <libebook/e-book-async.h>
+#include <libebook/e-book.h>
#include "e-util/e-config-listener.h"
G_BEGIN_DECLS
@@ -44,11 +44,11 @@ EConfigListener *eab_get_config_database (void);
guint eab_name_and_email_query (EBook *book,
const char *name,
const char *email,
- EBookContactsCallback cb,
+ EBookListCallback cb,
gpointer closure);
guint eab_nickname_query (EBook *book,
const char *nickname,
- EBookContactsCallback cb,
+ EBookListCallback cb,
gpointer closure);
GList *eab_contact_list_from_string (const char *str);