aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-config.c
diff options
context:
space:
mode:
authorMengjie Yu <meng-jie.yu@sun.com>2005-04-28 17:27:01 +0800
committerHarry Lu <haip@src.gnome.org>2005-04-28 17:27:01 +0800
commit4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f (patch)
tree32a725fe04cc386fdd6b63302368ad79ec631dd2 /e-util/e-config.c
parent6c77af3cf2a6cf3c0e4c573baed9b6d822f570c4 (diff)
downloadgsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.tar
gsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.tar.gz
gsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.tar.bz2
gsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.tar.lz
gsoc2013-evolution-4d64f19cd294718fc7fc8bbc8892d3a6f1b86d5f.tar.xz
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/e-config.c')
-rw-r--r--e-util/e-config.c1
1 files changed, 1 insertions, 0 deletions
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);
}