diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2005-02-06 21:09:58 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2005-02-06 21:09:58 +0800 |
commit | 53baa8c738de6343623db08c0bbe2fa435709fd4 (patch) | |
tree | ccabde28b95f8e8685823c6d3c7c372e56a13f8d /addressbook | |
parent | 50de333977cd878ec9739058f114ae449c7f5e37 (diff) | |
download | gsoc2013-evolution-53baa8c738de6343623db08c0bbe2fa435709fd4.tar.gz gsoc2013-evolution-53baa8c738de6343623db08c0bbe2fa435709fd4.tar.zst gsoc2013-evolution-53baa8c738de6343623db08c0bbe2fa435709fd4.zip |
new function to filter contact lists from search results (query_cb) :
2004-02-06 Sivaiah Nallagatla <snallagatla@novell.com>
* gui/widgets/eab-popup-control.c
(remove_contact_lists) : new function to
filter contact lists from search results
(query_cb) : remove contact lists from the
search results based on email
Fixes #68745
svn path=/trunk/; revision=28722
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-popup-control.c | 44 |
2 files changed, 42 insertions, 8 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 9fd390167d..7af1feb069 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,8 +1,10 @@ 2005-01-04 vivek jain <jvivek@novell.com> - * gui/component/addressbook.c: (load_source_auth_cb) + * gui/component/addressbook.c (load_source_auth_cb): display a warning dialog if the server version is not proper - * addressbook-errors.xml: added warning message for invalid server version + + * addressbook-errors.xml: added warning message for + invalid server version 2004-02-02 Hans Petter Jansson <hpj@ximian.com> diff --git a/addressbook/gui/widgets/eab-popup-control.c b/addressbook/gui/widgets/eab-popup-control.c index 1ff1544958..6b114a9950 100644 --- a/addressbook/gui/widgets/eab-popup-control.c +++ b/addressbook/gui/widgets/eab-popup-control.c @@ -993,6 +993,30 @@ eab_popup_control_multiple_matches (EABPopupControl *pop, const GList *contacts) * Addressbook Query Fun */ +static GList* +remove_contact_lists (GList *contacts) +{ + GList *contacts_copy = g_list_copy (contacts); + GList *temp; + GPtrArray *indices = g_ptr_array_new (); + int i = 0; + + + for (temp = contacts_copy; temp != NULL; temp = g_list_next (temp), i++) { + if (e_contact_get (temp->data, E_CONTACT_IS_LIST)) + g_ptr_array_add (indices, temp); + } + + for (i =0; i < indices->len; i++) { + GList *link = indices->pdata[i]; + contacts_copy = g_list_remove_link (contacts_copy, link); + + } + g_ptr_array_free (indices, FALSE); + return contacts_copy; +} + + static void name_only_query_cb (EBook *book, EBookStatus status, GList *contacts, gpointer closure) { @@ -1004,8 +1028,7 @@ name_only_query_cb (EBook *book, EBookStatus status, GList *contacts, gpointer c pop = EAB_POPUP_CONTROL (closure); pop->query_tag = 0; - - if (contacts == NULL) { + if (contacts == NULL) { eab_popup_control_no_matches (pop); } else { eab_popup_control_ambiguous_email_add (pop, contacts); @@ -1016,6 +1039,7 @@ static void query_cb (EBook *book, EBookStatus status, GList *contacts, gpointer closure) { EABPopupControl *pop; + GList *filtered_contacts; if (status != E_BOOK_ERROR_OK) return; @@ -1025,7 +1049,12 @@ query_cb (EBook *book, EBookStatus status, GList *contacts, gpointer closure) pop->query_tag = 0; gtk_widget_hide (pop->query_msg); - if (contacts == NULL) { + /* remove contact lists from the search results to avoid + cases like http://bugzilla.ximian.com/show_bug.cgi?id=68745*/ + + filtered_contacts = remove_contact_lists (contacts); + + if (filtered_contacts == NULL) { /* Do a name-only query if: (1) The name is non-empty. @@ -1038,11 +1067,14 @@ query_cb (EBook *book, EBookStatus status, GList *contacts, gpointer closure) } } else { - if (g_list_length ((GList *) contacts) == 1) - eab_popup_control_display_contact (pop, E_CONTACT (contacts->data)); + + if (g_list_length (filtered_contacts) == 1) + eab_popup_control_display_contact (pop, E_CONTACT (filtered_contacts->data)); else - eab_popup_control_multiple_matches (pop, contacts); + eab_popup_control_multiple_matches (pop, filtered_contacts); + g_list_free (filtered_contacts); } + } static void |