diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-06-11 13:43:48 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-06-11 13:43:48 +0800 |
commit | efa9a6294d55c0c9f857e1c26390898c84ce0784 (patch) | |
tree | e0cde43394efdc84f05b38cb98432b5a9c3ee470 /addressbook/gui/merging | |
parent | 56132926ca2d4f308a903937f16b0ecfa447b251 (diff) | |
download | gsoc2013-evolution-efa9a6294d55c0c9f857e1c26390898c84ce0784.tar gsoc2013-evolution-efa9a6294d55c0c9f857e1c26390898c84ce0784.tar.gz gsoc2013-evolution-efa9a6294d55c0c9f857e1c26390898c84ce0784.tar.bz2 gsoc2013-evolution-efa9a6294d55c0c9f857e1c26390898c84ce0784.tar.lz gsoc2013-evolution-efa9a6294d55c0c9f857e1c26390898c84ce0784.tar.xz gsoc2013-evolution-efa9a6294d55c0c9f857e1c26390898c84ce0784.tar.zst gsoc2013-evolution-efa9a6294d55c0c9f857e1c26390898c84ce0784.zip |
Added this function to let you do slightly more complicated searches.
2001-06-11 Christopher James Lahey <clahey@ximian.com>
* backend/ebook/e-card-compare.c, backend/ebook/e-card-compare.h
(e_card_locate_match_full): Added this function to let you do
slightly more complicated searches.
* gui/merging/e-card-merging.c (e_card_merging_book_add_card): Use
e_card_locate_match_full to check if the card exists in the book
it's being added to instead of in the default book.
svn path=/trunk/; revision=10178
Diffstat (limited to 'addressbook/gui/merging')
-rw-r--r-- | addressbook/gui/merging/e-card-merging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/merging/e-card-merging.c b/addressbook/gui/merging/e-card-merging.c index 701ab69da9..c367a60271 100644 --- a/addressbook/gui/merging/e-card-merging.c +++ b/addressbook/gui/merging/e-card-merging.c @@ -82,7 +82,7 @@ e_card_merging_book_add_card (EBook *book, lookup->cb = cb; lookup->closure = closure; - e_card_locate_match (card, match_query_callback, lookup); + e_card_locate_match_full (book, card, NULL, match_query_callback, lookup); return TRUE; } |