diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 070ff12651..474feef89d 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +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. + 2001-07-01 Chris Toshok <toshok@ximian.com> * gui/contact-list-editor/e-contact-list-editor.c (fill_in_info): 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); |