diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/contact-editor/e-contact-editor.c | 2 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 637a25858e..21dcebd4a1 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2000-05-19 Christopher James Lahey <clahey@helixcode.com> + * contact-editor/e-contact-editor.c: Fixed a bug that broke + address field support. + +2000-05-19 Christopher James Lahey <clahey@helixcode.com> + * contact-editor/e-contact-editor.c, contact-editor/e-contact-editor.h: Added support for arbitrary fields in the contact editor. diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c index b665410d0c..5d7485561c 100644 --- a/addressbook/contact-editor/e-contact-editor.c +++ b/addressbook/contact-editor/e-contact-editor.c @@ -387,7 +387,7 @@ set_entry_changed_signals(EContactEditor *editor) email_entry_changed, editor); } widget = glade_xml_get_widget(editor->gui, "text-address"); - if (widget && GTK_IS_ENTRY(widget)) { + if (widget && GTK_IS_TEXT(widget)) { gtk_signal_connect(GTK_OBJECT(widget), "changed", address_text_changed, editor); } diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index b665410d0c..5d7485561c 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -387,7 +387,7 @@ set_entry_changed_signals(EContactEditor *editor) email_entry_changed, editor); } widget = glade_xml_get_widget(editor->gui, "text-address"); - if (widget && GTK_IS_ENTRY(widget)) { + if (widget && GTK_IS_TEXT(widget)) { gtk_signal_connect(GTK_OBJECT(widget), "changed", address_text_changed, editor); } |