diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-19 12:37:39 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-19 12:37:39 +0800 |
commit | be42a2a28615168d66b5eaefa462b67cd8227761 (patch) | |
tree | 16ae72e674be88d5754c4756e188ec16e96e1cfa /addressbook/gui | |
parent | 8139ba9425da46085769d1bcb6c8f8a1f22647ed (diff) | |
download | gsoc2013-evolution-be42a2a28615168d66b5eaefa462b67cd8227761.tar gsoc2013-evolution-be42a2a28615168d66b5eaefa462b67cd8227761.tar.gz gsoc2013-evolution-be42a2a28615168d66b5eaefa462b67cd8227761.tar.bz2 gsoc2013-evolution-be42a2a28615168d66b5eaefa462b67cd8227761.tar.lz gsoc2013-evolution-be42a2a28615168d66b5eaefa462b67cd8227761.tar.xz gsoc2013-evolution-be42a2a28615168d66b5eaefa462b67cd8227761.tar.zst gsoc2013-evolution-be42a2a28615168d66b5eaefa462b67cd8227761.zip |
Fixed a bug that broke address field support.
2000-05-19 Christopher James Lahey <clahey@helixcode.com>
* contact-editor/e-contact-editor.c: Fixed a bug that broke
address field support.
svn path=/trunk/; revision=3134
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |