summaryrefslogtreecommitdiff
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
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
-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)
43 /* Checking for delimiters */ 43 /* Checking for delimiters */
44 if(c == ARGLISTOPENSYM 44 if(c == ARGLISTOPENSYM
45 || c == ARGLISTCLOSESYM 45 || c == ARGLISTCLOSESYM
46 || c == ARGLISTSEPERATESYM) 46 || c == ARGLISTSEPARATESYM)
47 setFormat(i, 1, tag); 47 setFormat(i, 1, tag);
48 48
49 if(c == ENUMLISTOPENSYM 49 if(c == ENUMLISTOPENSYM
50 || c == ENUMLISTCLOSESYM 50 || c == ENUMLISTCLOSESYM
51 || c == ENUMLISTSEPERATESYM) 51 || c == ENUMLISTSEPARATESYM)
52 setFormat(i, 1, conditional); 52 setFormat(i, 1, conditional);
53 53
54 /* Checking for comments */ 54 /* 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
141 { 141 {
142 buffer.append(children[i]->genCode()); 142 buffer.append(children[i]->genCode());
143 if(i != element->params_count - 1) 143 if(i != element->params_count - 1)
144 buffer.append(ARGLISTSEPERATESYM); 144 buffer.append(ARGLISTSEPARATESYM);
145 } 145 }
146 buffer.append(ARGLISTCLOSESYM); 146 buffer.append(ARGLISTCLOSESYM);
147 buffer.append('\n'); 147 buffer.append('\n');
@@ -191,7 +191,7 @@ QString ParseTreeNode::genCode() const
191 { 191 {
192 buffer.append(children[i]->genCode()); 192 buffer.append(children[i]->genCode());
193 if( i != element->params_count - 1) 193 if( i != element->params_count - 1)
194 buffer.append(ARGLISTSEPERATESYM); 194 buffer.append(ARGLISTSEPARATESYM);
195 buffer.append(ARGLISTCLOSESYM); 195 buffer.append(ARGLISTCLOSESYM);
196 } 196 }
197 } 197 }
@@ -202,7 +202,7 @@ QString ParseTreeNode::genCode() const
202 { 202 {
203 buffer.append(children[i]->genCode()); 203 buffer.append(children[i]->genCode());
204 if(i != children.count() - 1) 204 if(i != children.count() - 1)
205 buffer.append(ENUMLISTSEPERATESYM); 205 buffer.append(ENUMLISTSEPARATESYM);
206 } 206 }
207 buffer.append(ENUMLISTCLOSESYM); 207 buffer.append(ENUMLISTCLOSESYM);
208 openConditionals--; 208 openConditionals--;
@@ -220,7 +220,7 @@ QString ParseTreeNode::genCode() const
220 { 220 {
221 buffer.append(children[i]->genCode()); 221 buffer.append(children[i]->genCode());
222 if(i != children.count() - 1) 222 if(i != children.count() - 1)
223 buffer.append(ARGLISTSEPERATESYM); 223 buffer.append(ARGLISTSEPARATESYM);
224 } 224 }
225 buffer.append(ARGLISTCLOSESYM); 225 buffer.append(ARGLISTCLOSESYM);
226 } 226 }