diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-06 20:05:08 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-06 20:05:08 +0800 |
commit | d235696811e34319df75577e34a711b8e9a3ce6d (patch) | |
tree | 170eca6c6d8a166cc460860ce7df42daa03655e1 | |
parent | 6a46aea720ddc40d6c1c1155e34e4c3e90b9e7df (diff) | |
download | gsoc2013-evolution-d235696811e34319df75577e34a711b8e9a3ce6d.tar gsoc2013-evolution-d235696811e34319df75577e34a711b8e9a3ce6d.tar.gz gsoc2013-evolution-d235696811e34319df75577e34a711b8e9a3ce6d.tar.bz2 gsoc2013-evolution-d235696811e34319df75577e34a711b8e9a3ce6d.tar.lz gsoc2013-evolution-d235696811e34319df75577e34a711b8e9a3ce6d.tar.xz gsoc2013-evolution-d235696811e34319df75577e34a711b8e9a3ce6d.tar.zst gsoc2013-evolution-d235696811e34319df75577e34a711b8e9a3ce6d.zip |
Set the title of the dialog.
* e-shell-settings-dialog.c (init): Set the title of the dialog.
svn path=/trunk/; revision=16370
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-settings-dialog.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index b99d8307e8..4a1755ce63 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2002-04-06 Ettore Perazzoli <ettore@ximian.com> + + * e-shell-settings-dialog.c (init): Set the title of the dialog. + 2002-04-04 Dan Winship <danw@ximian.com> * evolution-shell-client.c diff --git a/shell/e-shell-settings-dialog.c b/shell/e-shell-settings-dialog.c index 31896cb073..64783babd9 100644 --- a/shell/e-shell-settings-dialog.c +++ b/shell/e-shell-settings-dialog.c @@ -240,6 +240,7 @@ init (EShellSettingsDialog *dialog) { load_pages (dialog); + gtk_window_set_title (GTK_WINDOW (dialog), _("Evolution Settings")); gtk_window_set_default_size (GTK_WINDOW (dialog), 600, 450); } |