aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/addressbook.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-07 13:53:59 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-07 13:53:59 +0800
commitcf022042c82501ba50622b144829a4ce9e301ecb (patch)
tree5c7716d7914543c78a8c4e8e0475f9439006aaa8 /addressbook/gui/component/addressbook.c
parent97505d53504d42a41b4dd61ba99cb784e665d6c4 (diff)
downloadgsoc2013-evolution-cf022042c82501ba50622b144829a4ce9e301ecb.tar
gsoc2013-evolution-cf022042c82501ba50622b144829a4ce9e301ecb.tar.gz
gsoc2013-evolution-cf022042c82501ba50622b144829a4ce9e301ecb.tar.bz2
gsoc2013-evolution-cf022042c82501ba50622b144829a4ce9e301ecb.tar.lz
gsoc2013-evolution-cf022042c82501ba50622b144829a4ce9e301ecb.tar.xz
gsoc2013-evolution-cf022042c82501ba50622b144829a4ce9e301ecb.tar.zst
gsoc2013-evolution-cf022042c82501ba50622b144829a4ce9e301ecb.zip
Make the addressbook create the correct file uri. Added a default query.
2000-05-07 Christopher James Lahey <clahey@helixcode.com> * gui/component/addressbook.c: Make the addressbook create the correct file uri. Added a default query. Initialize view->model and view->view to NULL. * gui/component/e-addressbook-model.c, gui/minicard/e-minicard-view.c: Only call get_book_view if both book and query and non-null. svn path=/trunk/; revision=2861
Diffstat (limited to 'addressbook/gui/component/addressbook.c')
-rw-r--r--addressbook/gui/component/addressbook.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c
index 7359249772..d21370891e 100644
--- a/addressbook/gui/component/addressbook.c
+++ b/addressbook/gui/component/addressbook.c
@@ -549,8 +549,11 @@ set_prop (BonoboPropertyBag *bag,
uri_data = e_read_file(uri_file);
- if (!uri_data)
- uri_data = g_concat_dir_and_file(view->uri + 7, "addressbook.db");
+ if (!uri_data) {
+ char *file_name = g_concat_dir_and_file(view->uri + 7, "addressbook.db");
+ uri_data = g_strdup_printf("file://%s", file_name);
+ g_free(file_name);
+ }
if (! e_book_load_uri (book, uri_data, book_open_cb, view))
{
@@ -736,8 +739,12 @@ change_view_type (AddressbookView *view, AddressbookViewType view_type)
if (view_type == view->view_type)
return;
+
+ if (view->view_type != ADDRESSBOOK_VIEW_NONE)
+ query = get_query(view);
+ else
+ query = g_strdup("(contains \"full_name\" \"\")");
- query = get_query(view);
switch (view_type) {
case ADDRESSBOOK_VIEW_MINICARD:
@@ -788,6 +795,9 @@ addressbook_factory (BonoboGenericFactory *Factory, void *closure)
/* Create the control. */
view->control = bonobo_control_new(view->vbox);
+ view->model = NULL;
+ view->view = NULL;
+
/* create the initial view */
change_view_type (view, ADDRESSBOOK_VIEW_TABLE);