diff options
-rw-r--r-- | filter/ChangeLog | 4 | ||||
-rw-r--r-- | filter/rule-editor.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog index 6951581f89..c0308c9ec4 100644 --- a/filter/ChangeLog +++ b/filter/ChangeLog @@ -1,3 +1,7 @@ +2001-11-15 Zbigniew Chyla <cyba@gnome.pl> + + * rule-editor.c (set_source): Removed U_. Fixes #15415. + 2001-11-21 Not Zed <NotZed@Ximian.com> * rule-editor.c (rule_edit): Hook onto destroy event. diff --git a/filter/rule-editor.c b/filter/rule-editor.c index 2529790283..b6056b3777 100644 --- a/filter/rule-editor.c +++ b/filter/rule-editor.c @@ -513,7 +513,7 @@ set_source (RuleEditor *re, const char *source) char *s; d(printf(" hit %s(%s)\n", rule->name, source?source:"<nil>")); - s = e_utf8_to_gtk_string (GTK_WIDGET (re->list), U_(rule->name)); + s = e_utf8_to_gtk_string (GTK_WIDGET (re->list), rule->name); item = gtk_list_item_new_with_label (s); g_free (s); gtk_object_set_data (GTK_OBJECT (item), "rule", rule); |