diff options
author | Chris Toshok <toshok@ximian.com> | 2004-05-20 09:16:56 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-05-20 09:16:56 +0800 |
commit | afb051139213e937b7fe160acc185c194a3edf16 (patch) | |
tree | daaef5f597081bab76bac587c442a6fe44d358f5 /calendar/gui/e-meeting-store.c | |
parent | 47c3838fee257737f17aae3696a8dda177af7a35 (diff) | |
download | gsoc2013-evolution-afb051139213e937b7fe160acc185c194a3edf16.tar gsoc2013-evolution-afb051139213e937b7fe160acc185c194a3edf16.tar.gz gsoc2013-evolution-afb051139213e937b7fe160acc185c194a3edf16.tar.bz2 gsoc2013-evolution-afb051139213e937b7fe160acc185c194a3edf16.tar.lz gsoc2013-evolution-afb051139213e937b7fe160acc185c194a3edf16.tar.xz gsoc2013-evolution-afb051139213e937b7fe160acc185c194a3edf16.tar.zst gsoc2013-evolution-afb051139213e937b7fe160acc185c194a3edf16.zip |
use the new e_book_new_* and e_book_open apis.
2004-05-19 Chris Toshok <toshok@ximian.com>
* gui/e-meeting-store.c (start_addressbook_server): use the new
e_book_new_* and e_book_open apis.
* gui/e-meeting-list-view.c (start_addressbook_server): use the
new e_book_new_* and e_book_open apis.
svn path=/trunk/; revision=26000
Diffstat (limited to 'calendar/gui/e-meeting-store.c')
-rw-r--r-- | calendar/gui/e-meeting-store.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-meeting-store.c b/calendar/gui/e-meeting-store.c index bd89a46f83..9aba639232 100644 --- a/calendar/gui/e-meeting-store.c +++ b/calendar/gui/e-meeting-store.c @@ -80,8 +80,8 @@ static GObjectClass *parent_class = NULL; static void start_addressbook_server (EMeetingStore *store) { - store->priv->ebook = e_book_new (); - e_book_load_local_addressbook (store->priv->ebook, NULL); + store->priv->ebook = e_book_new_system_addressbook (NULL); + e_book_open (store->priv->ebook, FALSE, NULL); } static icalparameter_cutype |