summaryrefslogtreecommitdiffstats
path: root/common/configstore.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/configstore.h')
-rw-r--r--common/configstore.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/configstore.h b/common/configstore.h
index 2f51f63..514bc01 100644
--- a/common/configstore.h
+++ b/common/configstore.h
@@ -30,7 +30,7 @@
30class SINK_EXPORT ConfigStore 30class SINK_EXPORT ConfigStore
31{ 31{
32public: 32public:
33 ConfigStore(const QByteArray &identifier); 33 ConfigStore(const QByteArray &identifier, const QByteArray &typeName);
34 34
35 /** 35 /**
36 * Returns all entries with their type. 36 * Returns all entries with their type.
@@ -64,5 +64,6 @@ public:
64 64
65private: 65private:
66 QByteArray mIdentifier; 66 QByteArray mIdentifier;
67 QByteArray mTypeName;
67 QSharedPointer<QSettings> mConfig; 68 QSharedPointer<QSettings> mConfig;
68}; 69};