rename the category entry to entry-categories.

2003-01-26  Chris Toshok  <toshok@ximian.com>

	* gui/contact-editor/contact-editor.glade: rename the category
	entry to entry-categories.

	* gui/contact-editor/e-contact-editor.c
	(set_entry_changed_signals): use the specialized "changed" signal
	handlers for entry-company and entry-fullname.

svn path=/trunk/; revision=19640
This commit is contained in:
Chris Toshok
2003-01-27 05:30:35 +00:00
committed by Chris Toshok
parent 29a26b08f3
commit 50a112d4c4
3 changed files with 22 additions and 3 deletions
+9
View File
@@ -1,3 +1,12 @@
2003-01-26 Chris Toshok <toshok@ximian.com>
* gui/contact-editor/contact-editor.glade: rename the category
entry to entry-categories.
* gui/contact-editor/e-contact-editor.c
(set_entry_changed_signals): use the specialized "changed" signal
handlers for entry-company and entry-fullname.
2003-01-26 Chris Toshok <toshok@ximian.com>
* gui/component/Makefile.am: i need to sleep more.
@@ -1402,7 +1402,7 @@
<property name="yscale">0</property>
<child>
<widget class="GtkEntry" id="entry3">
<widget class="GtkEntry" id="entry-categories">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="editable">True</property>
@@ -660,8 +660,18 @@ set_entry_changed_signals(EContactEditor *editor)
G_CALLBACK (address_text_changed), editor);
}
set_entry_changed_signal_field(editor, "entry-fullname");
set_entry_changed_signal_field(editor, "entry-company");
widget = glade_xml_get_widget(editor->gui, "entry-fullname");
if (widget && GTK_IS_ENTRY(widget)) {
g_signal_connect (widget, "changed",
G_CALLBACK (name_entry_changed), editor);
}
widget = glade_xml_get_widget(editor->gui, "entry-company");
if (widget && GTK_IS_ENTRY(widget)) {
g_signal_connect (widget, "changed",
G_CALLBACK (company_entry_changed), editor);
}
set_entry_changed_signal_field(editor, "entry-web");
set_entry_changed_signal_field(editor, "entry-categories");
set_entry_changed_signal_field(editor, "entry-jobtitle");