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 */
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 */

View File

@ -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);
}