summaryrefslogtreecommitdiff
path: root/utils/themeeditor/parsetreemodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/parsetreemodel.h')
-rw-r--r--utils/themeeditor/parsetreemodel.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/themeeditor/parsetreemodel.h b/utils/themeeditor/parsetreemodel.h
index 78484eb5f4..64365ed038 100644
--- a/utils/themeeditor/parsetreemodel.h
+++ b/utils/themeeditor/parsetreemodel.h
@@ -43,15 +43,19 @@ public:
43 ParseTreeModel(char* wps, QObject* parent = 0); 43 ParseTreeModel(char* wps, QObject* parent = 0);
44 virtual ~ParseTreeModel(); 44 virtual ~ParseTreeModel();
45 45
46 QString genCode();
47
48 /*
46 QModelIndex index(int row, int column, const QModelIndex& parent) const; 49 QModelIndex index(int row, int column, const QModelIndex& parent) const;
47 QModelIndex parent(const QModelIndex &child) const; 50 QModelIndex parent(const QModelIndex &child) const;
48 int rowCount(const QModelIndex &parent) const; 51 int rowCount(const QModelIndex &parent) const;
49 int columnCount(const QModelIndex &parent) const; 52 int columnCount(const QModelIndex &parent) const;
50 QVariant data(const QModelIndex &index, int role) const; 53 QVariant data(const QModelIndex &index, int role) const;
54 */
51 55
52private: 56private:
53 ParseTreeNode* root; 57 ParseTreeNode* root;
54 struct skin_element* wps; 58 struct skin_element* tree;
55}; 59};
56 60
57 61