aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-editor.c
diff options
context:
space:
mode:
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");
+
+
}