aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/message-tag-editor.c7
2 files changed, 13 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 7a315dc8d0..29bb0aee94 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,11 @@
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.
+
+
+2002-02-20 Anna Marie Dirks <anna@ximian.com>
+
* message-tags.glade: Changed the policy for table2 so that it
does not expand/fill. This was necessary to allow the message list
as much growing room as possible. (And besides, there's no reason for
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");
+
+
}