summaryrefslogtreecommitdiff
path: root/utils/themeeditor/projectmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/projectmodel.h')
-rw-r--r--utils/themeeditor/projectmodel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/themeeditor/projectmodel.h b/utils/themeeditor/projectmodel.h
index 62cf008..083865a 100644
--- a/utils/themeeditor/projectmodel.h
+++ b/utils/themeeditor/projectmodel.h
@@ -23,6 +23,7 @@
#define PROJECTMODEL_H
#include <QAbstractItemModel>
+#include <QHash>
class ProjectNode;
@@ -98,6 +99,9 @@ public:
virtual Qt::ItemFlags flags(int column) const{ return 0; }
virtual void activated(){ }
+private:
+ QHash<QString, QString> settings;
+
};