summaryrefslogtreecommitdiff
path: root/utils/themeeditor/parsetreenode.cpp
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-05-30 01:47:35 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-05-30 01:47:35 +0000
commit9f2e1b1e1a1dae857fe74728b91c5393d5f1c283 (patch)
treebfb60801f71d8660766ae45f9bb9d81a51b5b3ef /utils/themeeditor/parsetreenode.cpp
parent9843626b6941f63b964c3352e996032247115aad (diff)
downloadrockbox-9f2e1b1e1a1dae857fe74728b91c5393d5f1c283.tar.gz
rockbox-9f2e1b1e1a1dae857fe74728b91c5393d5f1c283.zip
Theme Editor: Got a barely functional treeview in place
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26401 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/parsetreenode.cpp')
-rw-r--r--utils/themeeditor/parsetreenode.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/themeeditor/parsetreenode.cpp b/utils/themeeditor/parsetreenode.cpp
index 60a18b8dbc..caafff5f43 100644
--- a/utils/themeeditor/parsetreenode.cpp
+++ b/utils/themeeditor/parsetreenode.cpp
@@ -273,9 +273,8 @@ QVariant ParseTreeNode::data(int column) const
273 switch(element->type) 273 switch(element->type)
274 { 274 {
275 case LINE: 275 case LINE:
276 return QString();
277
278 case SUBLINES: 276 case SUBLINES:
277 case CONDITIONAL:
279 return QString(); 278 return QString();
280 279
281 case NEWLINE: 280 case NEWLINE:
@@ -285,7 +284,6 @@ QVariant ParseTreeNode::data(int column) const
285 case COMMENT: 284 case COMMENT:
286 return QString(element->text); 285 return QString(element->text);
287 286
288 case CONDITIONAL:
289 case TAG: 287 case TAG:
290 return QString(element->name); 288 return QString(element->name);
291 } 289 }