From fb448b2f31051458cfed94381e8df80e09463c3c Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Tue, 4 Jun 2002 02:15:38 +0000 Subject: [PATCH] fix error message about bad aspect ratio name. 2002-06-03 Havoc Pennington * src/theme-parser.c (parse_aspect_ratio): fix error message about bad aspect ratio name. --- ChangeLog | 5 +++++ src/theme-parser.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e3b09526f..5e4bef3ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-06-03 Havoc Pennington + + * src/theme-parser.c (parse_aspect_ratio): fix error message about + bad aspect ratio name. + 2002-06-03 Havoc Pennington * src/themes/Esco/metacity-theme-1.xml: test button aspect ratio diff --git a/src/theme-parser.c b/src/theme-parser.c index 5eafc74df..0518afbf9 100644 --- a/src/theme-parser.c +++ b/src/theme-parser.c @@ -1399,7 +1399,7 @@ parse_aspect_ratio (GMarkupParseContext *context, else { set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE, - _("Distance \"%s\" is unknown"), name); + _("Aspect ratio \"%s\" is unknown"), name); return; } }