diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-09-20 13:02:35 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-09-20 13:02:35 +0800 |
commit | 2421bfffad64767916d965d9d19b06be1f5e3831 (patch) | |
tree | bc0b6391a2e0250571eedc2dd6e001174939b9d6 /addressbook/gui | |
parent | 86061c474bf60aea3fa03d65033ea277fc7e99ce (diff) | |
download | gsoc2013-evolution-2421bfffad64767916d965d9d19b06be1f5e3831.tar gsoc2013-evolution-2421bfffad64767916d965d9d19b06be1f5e3831.tar.gz gsoc2013-evolution-2421bfffad64767916d965d9d19b06be1f5e3831.tar.bz2 gsoc2013-evolution-2421bfffad64767916d965d9d19b06be1f5e3831.tar.lz gsoc2013-evolution-2421bfffad64767916d965d9d19b06be1f5e3831.tar.xz gsoc2013-evolution-2421bfffad64767916d965d9d19b06be1f5e3831.tar.zst gsoc2013-evolution-2421bfffad64767916d965d9d19b06be1f5e3831.zip |
Fixed display of the minicards when the addressbook was first loading. (It
2000-09-20 Christopher James Lahey <clahey@helixcode.com>
* gui/widgets/e-addressbook-view.c: Fixed display of the minicards
when the addressbook was first loading. (It was overwriting a
string with NULL during init.)
svn path=/trunk/; revision=5517
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index dfbcbaca2d..9bcd4b2827 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -116,11 +116,10 @@ e_addressbook_view_class_init (EAddressbookViewClass *klass) static void e_addressbook_view_init (EAddressbookView *eav) { - eav->query = g_strdup("(contains \"x-evolution-any-field\" \"\")"); eav->view_type = E_ADDRESSBOOK_VIEW_NONE; eav->book = NULL; - eav->query = NULL; + eav->query = g_strdup("(contains \"x-evolution-any-field\" \"\")"); eav->object = NULL; eav->widget = NULL; @@ -156,7 +155,7 @@ e_addressbook_view_set_arg (GtkObject *object, GtkArg *arg, guint arg_id) if (eav->book) gtk_object_unref(GTK_OBJECT(eav->book)); if (GTK_VALUE_OBJECT(*arg)) { - eav->book = E_BOOK(GTK_VALUE_OBJECT(*arg)); + eav->book = E_BOOK(GTK_VALUE_OBJECT(*arg)); gtk_object_ref(GTK_OBJECT(eav->book)); } else |