diff options
author | Dan Winship <danw@src.gnome.org> | 2002-08-13 09:06:15 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-08-13 09:06:15 +0800 |
commit | 67d091d07ef507f2eee7b6a6ac8c81e359cf5a71 (patch) | |
tree | ed9959261d2429282da6c9d45b3ee45c75e65d0f | |
parent | 1c52eea0988c732c98fef5963a83eeb50a9c1b77 (diff) | |
download | gsoc2013-evolution-67d091d07ef507f2eee7b6a6ac8c81e359cf5a71.tar.gz gsoc2013-evolution-67d091d07ef507f2eee7b6a6ac8c81e359cf5a71.tar.zst gsoc2013-evolution-67d091d07ef507f2eee7b6a6ac8c81e359cf5a71.zip |
Use default book, not local one.
* tools/evolution-addressbook-import.c (main): Use default book,
not local one.
* tools/evolution-addressbook-export.c (main): Likewise.
* tools/evolution-addressbook-abuse.c (abuse_timeout): Likewise.
svn path=/trunk/; revision=17766
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | tools/evolution-addressbook-abuse.c | 2 | ||||
-rw-r--r-- | tools/evolution-addressbook-export.c | 2 | ||||
-rw-r--r-- | tools/evolution-addressbook-import.c | 2 |
4 files changed, 12 insertions, 3 deletions
@@ -1,3 +1,12 @@ +2002-08-12 Dan Winship <danw@ximian.com> + + * tools/evolution-addressbook-import.c (main): Use default book, + not local one. + + * tools/evolution-addressbook-export.c (main): Likewise. + + * tools/evolution-addressbook-abuse.c (abuse_timeout): Likewise. + 2002-08-11 Jeffrey Stedfast <fejj@ximian.com> * README: Update required gal and gtkhtml dependency information. diff --git a/tools/evolution-addressbook-abuse.c b/tools/evolution-addressbook-abuse.c index 44de75d780..4ba7bfc5ee 100644 --- a/tools/evolution-addressbook-abuse.c +++ b/tools/evolution-addressbook-abuse.c @@ -95,7 +95,7 @@ static gint abuse_timeout (gpointer foo) { EBook *book = e_book_new (); - e_book_load_local_address_book (book, use_addressbook, NULL); + e_book_load_default_book (book, use_addressbook, NULL); ++call_count; g_message ("timeout!"); diff --git a/tools/evolution-addressbook-export.c b/tools/evolution-addressbook-export.c index cfc0237a02..e21053b300 100644 --- a/tools/evolution-addressbook-export.c +++ b/tools/evolution-addressbook-export.c @@ -59,7 +59,7 @@ main (int argc, char *argv[]) if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE) g_error (_("Could not initialize Bonobo")); - e_book_use_local_address_book (use_addressbook, filename); + e_book_use_default_book (use_addressbook, filename); bonobo_main (); diff --git a/tools/evolution-addressbook-import.c b/tools/evolution-addressbook-import.c index 9d79ccae0d..60180fb883 100644 --- a/tools/evolution-addressbook-import.c +++ b/tools/evolution-addressbook-import.c @@ -85,7 +85,7 @@ main (int argc, char *argv[]) if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE) g_error (_("Could not initialize Bonobo")); - e_book_use_local_address_book (use_addressbook, filename); + e_book_use_default_book (use_addressbook, filename); bonobo_main (); |