summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-11-07 12:29:19 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-11-07 12:29:19 +0000
commit24b0b38315c6311a8ba9abfb9d61ffd4ad91b546 (patch)
tree8640fd6e941b6b79f8b43ba69d8516ade138de06 /utils
parent930a8a5050e46fb1c190b701d4913466beeb76e4 (diff)
downloadrockbox-24b0b38315c6311a8ba9abfb9d61ffd4ad91b546.tar.gz
rockbox-24b0b38315c6311a8ba9abfb9d61ffd4ad91b546.zip
Fix themeeditor building by correcting spelling of 'seperate'.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28528 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils')
-rw-r--r--utils/themeeditor/gui/skinhighlighter.cpp4
-rw-r--r--utils/themeeditor/models/parsetreenode.cpp8
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);
}