mirror of
https://github.com/brl/mutter.git
synced 2025-02-17 21:54:10 +00:00
Patch from Brent Smith to fix a duplicate string. Fixes #309774.
2005-08-08 Elijah Newren <newren@gmail.com> Patch from Brent Smith to fix a duplicate string. Fixes #309774. * src/theme-parser.c (parse_toplevel_element, parse_draw_op_element): Change "No \"%s\" attribute on element <%s>" string to "No \"%s\" attribute on <%s> element"
This commit is contained in:
parent
2972ab6df6
commit
f335b0c381
@ -1,3 +1,12 @@
|
|||||||
|
2005-08-08 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
|
Patch from Brent Smith to fix a duplicate string. Fixes #309774.
|
||||||
|
|
||||||
|
* src/theme-parser.c (parse_toplevel_element, parse_draw_op_element):
|
||||||
|
|
||||||
|
Change "No \"%s\" attribute on element <%s>" string to "No \"%s\"
|
||||||
|
attribute on <%s> element"
|
||||||
|
|
||||||
2005-08-03 Ray Strode <rstrode@redhat.com>
|
2005-08-03 Ray Strode <rstrode@redhat.com>
|
||||||
|
|
||||||
Improve the behavior of keyboard move/resize and edge
|
Improve the behavior of keyboard move/resize and edge
|
||||||
|
@ -726,7 +726,7 @@ parse_toplevel_element (GMarkupParseContext *context,
|
|||||||
if (name == NULL)
|
if (name == NULL)
|
||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
||||||
_("No \"%s\" attribute on element <%s>"),
|
_("No \"%s\" attribute on <%s> element"),
|
||||||
"name", element_name);
|
"name", element_name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -734,7 +734,7 @@ parse_toplevel_element (GMarkupParseContext *context,
|
|||||||
if (value == NULL)
|
if (value == NULL)
|
||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
||||||
_("No \"%s\" attribute on element <%s>"),
|
_("No \"%s\" attribute on <%s> element"),
|
||||||
"value", element_name);
|
"value", element_name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -2933,7 +2933,7 @@ parse_draw_op_element (GMarkupParseContext *context,
|
|||||||
if (name == NULL)
|
if (name == NULL)
|
||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
||||||
_("No \"%s\" attribute on element <%s>"), "name", element_name);
|
_("No \"%s\" attribute on <%s> element"), "name", element_name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3022,21 +3022,21 @@ parse_draw_op_element (GMarkupParseContext *context,
|
|||||||
if (name == NULL)
|
if (name == NULL)
|
||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
||||||
_("No \"%s\" attribute on element <%s>"), "name", element_name);
|
_("No \"%s\" attribute on <%s> element"), "name", element_name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tile_width == NULL)
|
if (tile_width == NULL)
|
||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
||||||
_("No \"%s\" attribute on element <%s>"), "tile_width", element_name);
|
_("No \"%s\" attribute on <%s> element"), "tile_width", element_name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tile_height == NULL)
|
if (tile_height == NULL)
|
||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
set_error (error, context, G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
|
||||||
_("No \"%s\" attribute on element <%s>"), "tile_height", element_name);
|
_("No \"%s\" attribute on <%s> element"), "tile_height", element_name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user