diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 9a339c345a..fef76df3c0 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2004-06-17 Chris Toshok <toshok@ximian.com> + * gui/contact-editor/e-contact-editor.c (e_contact_editor_new): + EBookFieldsCallback -> EBookEListCallback. + (e_contact_editor_set_property): 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. diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index a09a263edd..6728780e24 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -2997,7 +2997,7 @@ e_contact_editor_new (EBook *book, NULL); if (book) - e_book_async_get_supported_fields (book, (EBookFieldsCallback)supported_fields_cb, ce); + e_book_async_get_supported_fields (book, (EBookEListCallback)supported_fields_cb, ce); return ce; } @@ -3024,7 +3024,7 @@ e_contact_editor_set_property (GObject *object, guint prop_id, const GValue *val g_object_ref (editor->target_book); e_book_async_get_supported_fields (editor->target_book, - (EBookFieldsCallback) supported_fields_cb, editor); + (EBookEListCallback) supported_fields_cb, editor); } writable = e_book_is_writable (editor->source_book); @@ -3052,7 +3052,7 @@ e_contact_editor_set_property (GObject *object, guint prop_id, const GValue *val g_object_ref (editor->target_book); e_book_async_get_supported_fields (editor->target_book, - (EBookFieldsCallback) supported_fields_cb, editor); + (EBookEListCallback) supported_fields_cb, editor); if (!editor->changed && !editor->is_new_contact) editor->changed = TRUE; |