aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-03-31 11:36:50 +0800
committerChris Toshok <toshok@src.gnome.org>2004-03-31 11:36:50 +0800
commite3289853ca71aa3d5251f82215aca7c141835dad (patch)
treeada55a7f4cabe993e79f48c9d0e89a6f276bd1a1 /addressbook/gui/contact-editor
parent342f45f31d84b98cd342742c62f27b8f178d455a (diff)
downloadgsoc2013-evolution-e3289853ca71aa3d5251f82215aca7c141835dad.tar
gsoc2013-evolution-e3289853ca71aa3d5251f82215aca7c141835dad.tar.gz
gsoc2013-evolution-e3289853ca71aa3d5251f82215aca7c141835dad.tar.bz2
gsoc2013-evolution-e3289853ca71aa3d5251f82215aca7c141835dad.tar.lz
gsoc2013-evolution-e3289853ca71aa3d5251f82215aca7c141835dad.tar.xz
gsoc2013-evolution-e3289853ca71aa3d5251f82215aca7c141835dad.tar.zst
gsoc2013-evolution-e3289853ca71aa3d5251f82215aca7c141835dad.zip
[ fixes bug #34777 ]
2004-03-30 Chris Toshok <toshok@ximian.com> [ fixes bug #34777 ] * gui/contact-editor/e-contact-editor.c (file_as_entry_changed): set the window title to File As if the file as entry has something in it. "Contact Editor" otherwise. (set_entry_changed_signals): hook up the file-as-entry's "changed" signal. * gui/contact-list-editor/e-contact-list-editor.c (list_name_changed_cb): analogous fix, but "List Name" and "Contact List Editor". svn path=/trunk/; revision=25256
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c26
1 files changed, 24 insertions, 2 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index c9833815ac..5e6ebd86e8 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -1138,7 +1138,6 @@ file_as_set_style(EContactEditor *editor, int style)
GList *strings = NULL;
GtkEntry *file_as = GTK_ENTRY(glade_xml_get_widget(editor->gui, "entry-file-as"));
GtkWidget *widget;
-
if (!(file_as && GTK_IS_ENTRY(file_as)))
return;
@@ -1192,6 +1191,24 @@ name_entry_changed (GtkWidget *widget, EContactEditor *editor)
}
static void
+file_as_entry_changed (GtkWidget *widget, EContactEditor *editor)
+{
+ char *string = gtk_editable_get_chars(GTK_EDITABLE (widget), 0, -1);
+ char *title;
+
+ if (string && *string)
+ title = string;
+ else
+ title = _("Contact Editor");
+
+ gtk_window_set_title (GTK_WINDOW (editor->app), title);
+
+ g_free (string);
+
+ widget_changed (widget, editor);
+}
+
+static void
company_entry_changed (GtkWidget *widget, EContactEditor *editor)
{
int style = 0;
@@ -1300,6 +1317,12 @@ set_entry_changed_signals(EContactEditor *editor)
G_CALLBACK (name_entry_changed), editor);
}
+ widget = glade_xml_get_widget(editor->gui, "entry-file-as");
+ if (widget && GTK_IS_ENTRY(widget)) {
+ g_signal_connect (widget, "changed",
+ G_CALLBACK (file_as_entry_changed), editor);
+ }
+
widget = glade_xml_get_widget(editor->gui, "entry-company");
if (widget && GTK_IS_ENTRY(widget)) {
g_signal_connect (widget, "changed",
@@ -1314,7 +1337,6 @@ set_entry_changed_signals(EContactEditor *editor)
set_entry_changed_signal_field(editor, "entry-categories");
set_entry_changed_signal_field(editor, "entry-jobtitle");
- set_entry_changed_signal_field(editor, "entry-file-as");
set_entry_changed_signal_field(editor, "entry-manager");
set_entry_changed_signal_field(editor, "entry-assistant");
set_entry_changed_signal_field(editor, "entry-office");