aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-07-02 14:23:04 +0800
committerChris Lahey <clahey@src.gnome.org>2001-07-02 14:23:04 +0800
commit761983a7171a50508885eede90c32c14d4fdafc3 (patch)
tree9f9b635e6e564a2fd4dd385c851fb767101e1d4e /addressbook/gui
parentd10adfea7a903356ccf15161955325a83ebd9863 (diff)
downloadgsoc2013-evolution-761983a7171a50508885eede90c32c14d4fdafc3.tar
gsoc2013-evolution-761983a7171a50508885eede90c32c14d4fdafc3.tar.gz
gsoc2013-evolution-761983a7171a50508885eede90c32c14d4fdafc3.tar.bz2
gsoc2013-evolution-761983a7171a50508885eede90c32c14d4fdafc3.tar.lz
gsoc2013-evolution-761983a7171a50508885eede90c32c14d4fdafc3.tar.xz
gsoc2013-evolution-761983a7171a50508885eede90c32c14d4fdafc3.tar.zst
gsoc2013-evolution-761983a7171a50508885eede90c32c14d4fdafc3.zip
Turned off wombatification of the categories master list here.
2001-07-02 Christopher James Lahey <clahey@ximian.com> * gui/contact-editor/e-contact-editor.c (categories_clicked): Turned off wombatification of the categories master list here. svn path=/trunk/; revision=10668
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index 2b9c22a249..5781ffcc65 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -39,7 +39,9 @@
#include <gal/widgets/e-unicode.h>
#include <gal/e-text/e-entry.h>
+#if 0
#include <e-util/e-categories-master-list-wombat.h>
+#endif
#include "addressbook/printing/e-contact-print.h"
#include "addressbook/printing/e-contact-print-envelope.h"
@@ -650,7 +652,9 @@ categories_clicked(GtkWidget *button, EContactEditor *editor)
GnomeDialog *dialog;
int result;
GtkWidget *entry = glade_xml_get_widget(editor->gui, "entry-categories");
+#if 0
ECategoriesMasterList *ecml;
+#endif
if (entry && GTK_IS_ENTRY(entry))
categories = e_utf8_gtk_entry_get_text(GTK_ENTRY(entry));
else if (editor->card)
@@ -658,12 +662,18 @@ categories_clicked(GtkWidget *button, EContactEditor *editor)
"categories", &categories,
NULL);
dialog = GNOME_DIALOG(e_categories_new(categories));
+#if 0
ecml = e_categories_master_list_wombat_new ();
+#endif
gtk_object_set(GTK_OBJECT(dialog),
"header", _("This contact belongs to these categories:"),
+#if 0
"ecml", ecml,
+#endif
NULL);
+#if 0
gtk_object_unref (GTK_OBJECT (ecml));
+#endif
gtk_widget_show(GTK_WIDGET(dialog));
result = gnome_dialog_run (dialog);
g_free (categories);