1
0
Fork 0
forked from len0rd/rockbox

Theme Editor: Fixed a bug in the subline parser, added a LINE element to contain logical lines, working on data model

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26337 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-05-27 19:57:15 +00:00
parent deb1600bbc
commit 8ea056db4b
7 changed files with 58 additions and 27 deletions

View file

@ -27,7 +27,6 @@ ParseTreeModel::ParseTreeModel(char* wps, QObject* parent):
QAbstractItemModel(parent)
{
this->wps = skin_parse(wps);
skin_debug_tree(this->wps);
this->root = new ParseTreeNode(this->wps, 0, true);
}