change Filters dialog window title to be HIG compliant

svn path=/trunk/; revision=31476
This commit is contained in:
Karsten Bräckelmann
2006-02-10 20:57:26 +00:00
parent 829a75f440
commit 1a405a9af6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-02-10 Karsten Bräckelmann <guenther@rudersport.de>
* em-utils.c (em_utils_edit_filters): Fix Filters dialog window
title to be HIG compliant. Fixes bug #330650.
2006-02-09 Sushma Rai <rsushma@novell.com>
* em-mailer-prefs.c (em_mailer_prefs_construct): Freeing font value

View File

@ -316,7 +316,7 @@ em_utils_edit_filters (GtkWidget *parent)
if (parent != NULL)
e_dialog_set_transient_for ((GtkWindow *) filter_editor, parent);
gtk_window_set_title (GTK_WINDOW (filter_editor), _("Filters"));
gtk_window_set_title (GTK_WINDOW (filter_editor), _("Message Filters"));
g_object_set_data_full ((GObject *) filter_editor, "context", fc, (GtkDestroyNotify) g_object_unref);
g_signal_connect (filter_editor, "response", G_CALLBACK (em_filter_editor_response), NULL);
gtk_widget_show (GTK_WIDGET (filter_editor));