1
0
Fork 0
forked from len0rd/rockbox

Fix themeeditor building by correcting spelling of 'seperate'.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28528 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Teruaki Kawashima 2010-11-07 12:29:19 +00:00
parent 930a8a5050
commit 24b0b38315
2 changed files with 6 additions and 6 deletions

View file

@ -43,12 +43,12 @@ void SkinHighlighter::highlightBlock(const QString& text)
/* Checking for delimiters */ /* Checking for delimiters */
if(c == ARGLISTOPENSYM if(c == ARGLISTOPENSYM
|| c == ARGLISTCLOSESYM || c == ARGLISTCLOSESYM
|| c == ARGLISTSEPERATESYM) || c == ARGLISTSEPARATESYM)
setFormat(i, 1, tag); setFormat(i, 1, tag);
if(c == ENUMLISTOPENSYM if(c == ENUMLISTOPENSYM
|| c == ENUMLISTCLOSESYM || c == ENUMLISTCLOSESYM
|| c == ENUMLISTSEPERATESYM) || c == ENUMLISTSEPARATESYM)
setFormat(i, 1, conditional); setFormat(i, 1, conditional);
/* Checking for comments */ /* Checking for comments */

View file

@ -141,7 +141,7 @@ QString ParseTreeNode::genCode() const
{ {
buffer.append(children[i]->genCode()); buffer.append(children[i]->genCode());
if(i != element->params_count - 1) if(i != element->params_count - 1)
buffer.append(ARGLISTSEPERATESYM); buffer.append(ARGLISTSEPARATESYM);
} }
buffer.append(ARGLISTCLOSESYM); buffer.append(ARGLISTCLOSESYM);
buffer.append('\n'); buffer.append('\n');
@ -191,7 +191,7 @@ QString ParseTreeNode::genCode() const
{ {
buffer.append(children[i]->genCode()); buffer.append(children[i]->genCode());
if( i != element->params_count - 1) if( i != element->params_count - 1)
buffer.append(ARGLISTSEPERATESYM); buffer.append(ARGLISTSEPARATESYM);
buffer.append(ARGLISTCLOSESYM); buffer.append(ARGLISTCLOSESYM);
} }
} }
@ -202,7 +202,7 @@ QString ParseTreeNode::genCode() const
{ {
buffer.append(children[i]->genCode()); buffer.append(children[i]->genCode());
if(i != children.count() - 1) if(i != children.count() - 1)
buffer.append(ENUMLISTSEPERATESYM); buffer.append(ENUMLISTSEPARATESYM);
} }
buffer.append(ENUMLISTCLOSESYM); buffer.append(ENUMLISTCLOSESYM);
openConditionals--; openConditionals--;
@ -220,7 +220,7 @@ QString ParseTreeNode::genCode() const
{ {
buffer.append(children[i]->genCode()); buffer.append(children[i]->genCode());
if(i != children.count() - 1) if(i != children.count() - 1)
buffer.append(ARGLISTSEPERATESYM); buffer.append(ARGLISTSEPARATESYM);
} }
buffer.append(ARGLISTCLOSESYM); buffer.append(ARGLISTCLOSESYM);
} }