diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-06-22 02:58:15 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-06-22 02:58:15 +0800 |
commit | e061c100c7ef9d316a33bfb537022d5b8b307389 (patch) | |
tree | 79c71fe9359f537fa05eb429293451f5101ef1cc /addressbook/gui/component/select-names | |
parent | c17467d7d521073cc2959fb51f294dde586a30b4 (diff) | |
download | gsoc2013-evolution-e061c100c7ef9d316a33bfb537022d5b8b307389.tar gsoc2013-evolution-e061c100c7ef9d316a33bfb537022d5b8b307389.tar.gz gsoc2013-evolution-e061c100c7ef9d316a33bfb537022d5b8b307389.tar.bz2 gsoc2013-evolution-e061c100c7ef9d316a33bfb537022d5b8b307389.tar.lz gsoc2013-evolution-e061c100c7ef9d316a33bfb537022d5b8b307389.tar.xz gsoc2013-evolution-e061c100c7ef9d316a33bfb537022d5b8b307389.tar.zst gsoc2013-evolution-e061c100c7ef9d316a33bfb537022d5b8b307389.zip |
Renamed. (The old name, edit_contact_info_have_book_cb was a hold-over
2001-06-21 Jon Trowbridge <trow@ximian.com>
* gui/component/select-names/e-select-names-popup.c
(make_contact_editor_cb): Renamed. (The old name,
edit_contact_info_have_book_cb was a hold-over from before, when
we weren't using e_book_use_local_address_book.)
* gui/component/e-address-popup.c
(e_address_popup_schedule_refresh): A Added. We now do the name
refreshes in an idle function, rather than in the setters.
(e_address_popup_set_free_form): Added. Properly handle inputs of
the form "Foo <bar@zar.com>", extracting the name and e-mail
address.
(e_address_popup_set_name): Check to make sure that the free-form
handler shouldn't be used to handle the input. Schedule a refresh
after making any changes.
(e_address_popup_set_email): Check to make sure that the free-form
handler shouldn't be used to handle the input. Schedule a refresh
after making any changes.
(e_address_popup_name_only_matches): Temporary place-holder for
handling name-only matches.
(query_cb): If our initial query fails (and included e-mail
information), do a name-only query. This is to handle the case of
adding new e-mail addresses to existing contacts.
(e_address_popup_query): Eliminated the "common_book" crap; using
e_book_use_local_address_book instead.
* backend/ebook/e-card-compare.c (match_search_info_free): Make
sure that the ->avoid list gets properly freed.
svn path=/trunk/; revision=10374
Diffstat (limited to 'addressbook/gui/component/select-names')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-popup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-popup.c b/addressbook/gui/component/select-names/e-select-names-popup.c index 4cea4dfb86..03dadf2d80 100644 --- a/addressbook/gui/component/select-names/e-select-names-popup.c +++ b/addressbook/gui/component/select-names/e-select-names-popup.c @@ -94,7 +94,7 @@ popup_info_cleanup (GtkWidget *w, gpointer info) /* You are in a maze of twisty little callbacks, all alike... */ static void -edit_contact_info_have_book_cb (EBook *book, gpointer user_data) +make_contact_editor_cb (EBook *book, gpointer user_data) { if (book) { EDestination *dest = E_DESTINATION (user_data); @@ -116,7 +116,7 @@ edit_contact_info_cb (GtkWidget *w, gpointer user_data) return; gtk_object_ref (GTK_OBJECT (info->dest)); - e_book_use_local_address_book (edit_contact_info_have_book_cb, (gpointer) info->dest); + e_book_use_local_address_book (make_contact_editor_cb, (gpointer) info->dest); } static void |