From f16adb045a25bf6f7ac29a2f6c80b25f1a3d2613 Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Wed, 2 Jun 2010 05:55:41 +0000 Subject: Theme Editor: Fixed code generation with escaped characters git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26462 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/parsetreenode.cpp | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'utils') diff --git a/utils/themeeditor/parsetreenode.cpp b/utils/themeeditor/parsetreenode.cpp index 41cdf3ca24..b283e13038 100644 --- a/utils/themeeditor/parsetreenode.cpp +++ b/utils/themeeditor/parsetreenode.cpp @@ -101,9 +101,9 @@ QString ParseTreeNode::genCode() const for(int i = 0; i < children.count(); i++) { /* - Adding a % in case of tag, because the tag rendering code - doesn't insert its own - */ + Adding a % in case of tag, because the tag rendering code + doesn't insert its own + */ if(children[i]->element->type == TAG) buffer.append(TAGSYM); buffer.append(children[i]->genCode()); @@ -161,7 +161,12 @@ QString ParseTreeNode::genCode() const break; case TEXT: - buffer.append(element->text); + for(char* cursor = element->text; *cursor; cursor++) + { + if(find_escape_character(*cursor)) + buffer.append(TAGSYM); + buffer.append(*cursor); + } break; case COMMENT: @@ -176,7 +181,12 @@ QString ParseTreeNode::genCode() const switch(param->type) { case skin_tag_parameter::STRING: - buffer.append(param->data.text); + for(char* cursor = param->data.text; *cursor; cursor++) + { + if(find_escape_character(*cursor)) + buffer.append(TAGSYM); + buffer.append(*cursor); + } break; case skin_tag_parameter::NUMERIC: -- cgit