aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-editor.c
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2002-02-21 07:34:53 +0800
committerAnna Dirks <anna@src.gnome.org>2002-02-21 07:34:53 +0800
commit18011729aec7fdb33f94129b5240451ec7d273d0 (patch)
treeb2b8950a02a874c1e201f0be67ca8ed75ab360f1 /mail/message-tag-editor.c
parentfeb63a0bdc5f09b4a822ebc31f2217d1a767247a (diff)
downloadgsoc2013-evolution-18011729aec7fdb33f94129b5240451ec7d273d0.tar
gsoc2013-evolution-18011729aec7fdb33f94129b5240451ec7d273d0.tar.gz
gsoc2013-evolution-18011729aec7fdb33f94129b5240451ec7d273d0.tar.bz2
gsoc2013-evolution-18011729aec7fdb33f94129b5240451ec7d273d0.tar.lz
gsoc2013-evolution-18011729aec7fdb33f94129b5240451ec7d273d0.tar.xz
gsoc2013-evolution-18011729aec7fdb33f94129b5240451ec7d273d0.tar.zst
gsoc2013-evolution-18011729aec7fdb33f94129b5240451ec7d273d0.zip
Gave the editor window a title and an icon.
2002-02-20 Anna Marie Dirks <anna@ximian.com> * message-tag-editor.c (message_tag_editor_init): Gave the editor window a title and an icon. svn path=/trunk/; revision=15777
Diffstat (limited to 'mail/message-tag-editor.c')
-rw-r--r--mail/message-tag-editor.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/mail/message-tag-editor.c b/mail/message-tag-editor.c
index 648a2a25ca..6aff7fd2b8 100644
--- a/mail/message-tag-editor.c
+++ b/mail/message-tag-editor.c
@@ -26,6 +26,7 @@
#endif
#include <libgnomeui/gnome-stock.h>
+#include <libgnomeui/gnome-window-icon.h>
#include "message-tag-editor.h"
@@ -86,6 +87,8 @@ static void
message_tag_editor_init (MessageTagEditor *editor)
{
gtk_window_set_policy (GTK_WINDOW (editor), FALSE, TRUE, FALSE);
+
+ gtk_window_set_title (GTK_WINDOW (editor), _("Flag to Follow Up"));
gnome_dialog_append_buttons (GNOME_DIALOG (editor),
GNOME_STOCK_BUTTON_OK,
@@ -93,6 +96,10 @@ message_tag_editor_init (MessageTagEditor *editor)
NULL);
gnome_dialog_set_default (GNOME_DIALOG (editor), 0);
+
+ gnome_window_icon_set_from_file (GTK_WINDOW (editor), EVOLUTION_ICONSDIR "/flag-for-followup-16.png");
+
+
}