1
0
Fork 0
forked from len0rd/rockbox

Theme Editor: Made text and comments editable from a treeview

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26453 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-01 20:19:51 +00:00
parent 5943f4c5e2
commit 279969618d
3 changed files with 51 additions and 32 deletions

View file

@ -172,6 +172,7 @@ QString ParseTreeNode::genCode() const
case COMMENT:
buffer.append(COMMENTSYM);
buffer.append(element->text);
buffer.append('\n');
break;
}
}