diff options
author | Chris Toshok <toshok@ximian.com> | 2001-08-18 10:55:18 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-08-18 10:55:18 +0800 |
commit | dde8d87a1af26497181a007d7670935650f31688 (patch) | |
tree | b5ee9911c899026a43de7b786adf09a53a36e1d4 | |
parent | e66c822c869dbede237233b95f8af2c3315d71d7 (diff) | |
download | gsoc2013-evolution-dde8d87a1af26497181a007d7670935650f31688.tar gsoc2013-evolution-dde8d87a1af26497181a007d7670935650f31688.tar.gz gsoc2013-evolution-dde8d87a1af26497181a007d7670935650f31688.tar.bz2 gsoc2013-evolution-dde8d87a1af26497181a007d7670935650f31688.tar.lz gsoc2013-evolution-dde8d87a1af26497181a007d7670935650f31688.tar.xz gsoc2013-evolution-dde8d87a1af26497181a007d7670935650f31688.tar.zst gsoc2013-evolution-dde8d87a1af26497181a007d7670935650f31688.zip |
connect to the "changed" signal on "entry-web" to update command state.
2001-08-17 Chris Toshok <toshok@ximian.com>
* gui/contact-editor/e-contact-editor.c
(set_entry_changed_signals): connect to the "changed" signal on
"entry-web" to update command state.
svn path=/trunk/; revision=12193
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index a3218c3592..0529e17157 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2001-08-17 Chris Toshok <toshok@ximian.com> + * gui/contact-editor/e-contact-editor.c + (set_entry_changed_signals): connect to the "changed" signal on + "entry-web" to update command state. + +2001-08-17 Chris Toshok <toshok@ximian.com> + * gui/contact-list-editor/e-contact-list-editor.c (list_added_cb): call e_card_set_id on the list's card so we can continue to use this dialog. also, call command_state_changed if we aren't diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index cd22ee0c18..3631ea6310 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -557,6 +557,11 @@ set_entry_changed_signals(EContactEditor *editor) gtk_signal_connect(GTK_OBJECT(widget), "changed", company_entry_changed, editor); } + widget = glade_xml_get_widget(editor->gui, "entry-web"); + if (widget && GTK_IS_ENTRY(widget)) { + gtk_signal_connect(GTK_OBJECT(widget), "changed", + widget_changed, editor); + } widget = glade_xml_get_widget(editor->gui, "entry-categories"); if (widget && GTK_IS_ENTRY(widget)) { gtk_signal_connect(GTK_OBJECT(widget), "changed", |