From 24b0b38315c6311a8ba9abfb9d61ffd4ad91b546 Mon Sep 17 00:00:00 2001 From: Teruaki Kawashima Date: Sun, 7 Nov 2010 12:29:19 +0000 Subject: Fix themeeditor building by correcting spelling of 'seperate'. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28528 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/gui/skinhighlighter.cpp | 4 ++-- utils/themeeditor/models/parsetreenode.cpp | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/utils/themeeditor/gui/skinhighlighter.cpp b/utils/themeeditor/gui/skinhighlighter.cpp index fddf4b38e4..92475dc5fd 100644 --- a/utils/themeeditor/gui/skinhighlighter.cpp +++ b/utils/themeeditor/gui/skinhighlighter.cpp @@ -43,12 +43,12 @@ void SkinHighlighter::highlightBlock(const QString& text) /* Checking for delimiters */ if(c == ARGLISTOPENSYM || c == ARGLISTCLOSESYM - || c == ARGLISTSEPERATESYM) + || c == ARGLISTSEPARATESYM) setFormat(i, 1, tag); if(c == ENUMLISTOPENSYM || c == ENUMLISTCLOSESYM - || c == ENUMLISTSEPERATESYM) + || c == ENUMLISTSEPARATESYM) setFormat(i, 1, conditional); /* Checking for comments */ diff --git a/utils/themeeditor/models/parsetreenode.cpp b/utils/themeeditor/models/parsetreenode.cpp index f15fa8e31a..bef7e553d1 100644 --- a/utils/themeeditor/models/parsetreenode.cpp +++ b/utils/themeeditor/models/parsetreenode.cpp @@ -141,7 +141,7 @@ QString ParseTreeNode::genCode() const { buffer.append(children[i]->genCode()); if(i != element->params_count - 1) - buffer.append(ARGLISTSEPERATESYM); + buffer.append(ARGLISTSEPARATESYM); } buffer.append(ARGLISTCLOSESYM); buffer.append('\n'); @@ -191,7 +191,7 @@ QString ParseTreeNode::genCode() const { buffer.append(children[i]->genCode()); if( i != element->params_count - 1) - buffer.append(ARGLISTSEPERATESYM); + buffer.append(ARGLISTSEPARATESYM); buffer.append(ARGLISTCLOSESYM); } } @@ -202,7 +202,7 @@ QString ParseTreeNode::genCode() const { buffer.append(children[i]->genCode()); if(i != children.count() - 1) - buffer.append(ENUMLISTSEPERATESYM); + buffer.append(ENUMLISTSEPARATESYM); } buffer.append(ENUMLISTCLOSESYM); openConditionals--; @@ -220,7 +220,7 @@ QString ParseTreeNode::genCode() const { buffer.append(children[i]->genCode()); if(i != children.count() - 1) - buffer.append(ARGLISTSEPERATESYM); + buffer.append(ARGLISTSEPARATESYM); } buffer.append(ARGLISTCLOSESYM); } -- cgit v1.2.3