diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-07-03 11:33:54 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-07-03 11:33:54 +0800 |
commit | e981cabe35d8fde0254eb32ea9091b0dd62db830 (patch) | |
tree | f1469c8fc21d2cf5f21c7fbb05aaae98d0a5c9da /addressbook/gui/component/select-names/e-select-names.c | |
parent | 36e1d698098c7a2ef0271320ffb8290741866d29 (diff) | |
download | gsoc2013-evolution-e981cabe35d8fde0254eb32ea9091b0dd62db830.tar.gz gsoc2013-evolution-e981cabe35d8fde0254eb32ea9091b0dd62db830.tar.zst gsoc2013-evolution-e981cabe35d8fde0254eb32ea9091b0dd62db830.zip |
Added $(BONOBO_CONF_LIBS).
2001-07-02 Christopher James Lahey <clahey@ximian.com>
* gui/component/Makefile.am (evolution_addressbook_LDADD): Added
$(BONOBO_CONF_LIBS).
* gui/component/select-names/e-select-names.c
(e_select_names_create_categories),
gui/contact-editor/e-contact-editor.c (categories_clicked):
Switched to an ECategoriesMasterListWombat instead of an
ECategoriesMasterListArray here.
svn path=/trunk/; revision=10722
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 581c5a635f..efa5a13102 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -40,7 +40,7 @@ #include <addressbook/backend/ebook/e-card-simple.h> #include "e-select-names-table-model.h" #include <gal/widgets/e-categories-master-list-combo.h> -#include <gal/widgets/e-categories-master-list-array.h> +#include <e-util/e-categories-master-list-wombat.h> static void e_select_names_init (ESelectNames *card); static void e_select_names_class_init (ESelectNamesClass *klass); @@ -431,7 +431,7 @@ e_select_names_create_categories (gchar *name, ECategoriesMasterList *ecml; GtkWidget *combo; - ecml = e_categories_master_list_array_new (); + ecml = e_categories_master_list_wombat_new (); combo = e_categories_master_list_combo_new (ecml); gtk_object_unref (GTK_OBJECT (ecml)); |