diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2005-04-08 14:24:38 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2005-04-08 14:24:38 +0800 |
commit | 32f26826d114c10f14f76c0b7cfda4d0edbcab92 (patch) | |
tree | 5e884fbcde50c04b2b0d1d99d75d6f719f3bd278 /addressbook/gui | |
parent | c26a9f463daa131649f3cb2ec7d6770cc052038f (diff) | |
download | gsoc2013-evolution-32f26826d114c10f14f76c0b7cfda4d0edbcab92.tar.gz gsoc2013-evolution-32f26826d114c10f14f76c0b7cfda4d0edbcab92.tar.zst gsoc2013-evolution-32f26826d114c10f14f76c0b7cfda4d0edbcab92.zip |
use eab_merging_book_add_contact instead of e_book_async_add_contact to
2005-04-03 Sivaiah Nallagatla <snallagatla@novell.com>
* gui/widgets/eab-gui-util.c (do_copy) :
use eab_merging_book_add_contact instead of
e_book_async_add_contact to take care of duplicate
checking
Fixes #74255
svn path=/trunk/; revision=29187
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 24bbe248d4..a6c4517cb1 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -34,7 +34,7 @@ #include "widgets/misc/e-error.h" #include "widgets/misc/e-image-chooser.h" #include <e-util/e-icon-factory.h> - +#include "eab-contact-merging.h" #include <gnome.h> #include "addressbook/gui/contact-editor/eab-editor.h" @@ -666,7 +666,7 @@ do_copy (gpointer data, gpointer user_data) book = process->destination; process->count ++; - e_book_async_add_contact(book, contact, contact_added_cb, process); + eab_merging_book_add_contact(book, contact, contact_added_cb, process); } static void |