diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-06-06 08:41:05 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-06-06 08:41:05 +0800 |
commit | bd05bde20f72c6c391b5a18db0205f33a9c01f33 (patch) | |
tree | 17da39771042ee2ac3ae629d819054514708c9ab /addressbook/contact-editor | |
parent | e65b6299c7162d041a37f25ec75ddb4c8de9452d (diff) | |
download | gsoc2013-evolution-bd05bde20f72c6c391b5a18db0205f33a9c01f33.tar gsoc2013-evolution-bd05bde20f72c6c391b5a18db0205f33a9c01f33.tar.gz gsoc2013-evolution-bd05bde20f72c6c391b5a18db0205f33a9c01f33.tar.bz2 gsoc2013-evolution-bd05bde20f72c6c391b5a18db0205f33a9c01f33.tar.lz gsoc2013-evolution-bd05bde20f72c6c391b5a18db0205f33a9c01f33.tar.xz gsoc2013-evolution-bd05bde20f72c6c391b5a18db0205f33a9c01f33.tar.zst gsoc2013-evolution-bd05bde20f72c6c391b5a18db0205f33a9c01f33.zip |
Remove references to ECategoryMasterListWombat.
2001-06-05 Christopher James Lahey <clahey@ximian.com>
* contact-editor/e-contact-editor.c (categories_clicked): Remove
references to ECategoryMasterListWombat.
svn path=/trunk/; revision=10130
Diffstat (limited to 'addressbook/contact-editor')
-rw-r--r-- | addressbook/contact-editor/e-contact-editor.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c index e9ad99283f..7c427ef6c7 100644 --- a/addressbook/contact-editor/e-contact-editor.c +++ b/addressbook/contact-editor/e-contact-editor.c @@ -38,8 +38,6 @@ #include <gal/widgets/e-gui-utils.h> #include <gal/widgets/e-unicode.h> -#include <e-util/e-categories-master-list-wombat.h> - #include "addressbook/printing/e-contact-print.h" #include "addressbook/printing/e-contact-print-envelope.h" #include "e-util/e-gui-utils.h" @@ -594,7 +592,6 @@ categories_clicked(GtkWidget *button, EContactEditor *editor) GnomeDialog *dialog; int result; GtkWidget *entry = glade_xml_get_widget(editor->gui, "entry-categories"); - ECategoriesMasterList *ecml; if (entry && GTK_IS_ENTRY(entry)) categories = e_utf8_gtk_entry_get_text(GTK_ENTRY(entry)); else if (editor->card) @@ -602,12 +599,9 @@ categories_clicked(GtkWidget *button, EContactEditor *editor) "categories", &categories, NULL); dialog = GNOME_DIALOG(e_categories_new(categories)); - ecml = e_categories_master_list_wombat_new (); gtk_object_set(GTK_OBJECT(dialog), "header", _("This contact belongs to these categories:"), - "ecml", ecml, NULL); - gtk_object_unref (GTK_OBJECT (ecml)); gtk_widget_show(GTK_WIDGET(dialog)); result = gnome_dialog_run (dialog); g_free (categories); |