diff options
author | Mengjie Yu <meng-jie.yu@sun.com> | 2005-04-28 17:27:01 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-04-28 17:27:01 +0800 |
commit | 4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f (patch) | |
tree | 32a725fe04cc386fdd6b63302368ad79ec631dd2 /e-util | |
parent | 6c77af3cf2a6cf3c0e4c573baed9b6d822f570c4 (diff) | |
download | gsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.tar.gz gsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.tar.zst gsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.zip |
We should set the title of the window.
2005-04-27 Mengjie Yu <meng-jie.yu@sun.com>
* e-config.c: (e_config_create_window):
We should set the title of the window.
Fixes #300477
svn path=/trunk/; revision=29236
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 7 | ||||
-rw-r--r-- | e-util/e-config.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 7de00b20f8..21f1588d34 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,10 @@ +2005-04-27 Mengjie Yu <meng-jie.yu@sun.com> + + * e-config.c: (e_config_create_window): + We should set the title of the window. + + Fixes #300477 + 2005-03-14 Not Zed <NotZed@Ximian.com> ** See bug #73550 (related for config pages) diff --git a/e-util/e-config.c b/e-util/e-config.c index ed489ab3b6..064ca44a79 100644 --- a/e-util/e-config.c +++ b/e-util/e-config.c @@ -913,6 +913,7 @@ e_config_create_window(EConfig *emp, struct _GtkWindow *parent, const char *titl } else { /* response is handled directly by the druid stuff */ w = gtk_window_new(GTK_WINDOW_TOPLEVEL); + gtk_window_set_title ((GtkWindow *)w, title); gtk_container_add((GtkContainer *)w, emp->widget); gtk_window_set_type_hint((GtkWindow *)w, GDK_WINDOW_TYPE_HINT_DIALOG); } |