summaryrefslogtreecommitdiffstats
path: root/common/query.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2015-12-08 14:04:03 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2015-12-08 14:04:03 +0100
commitd4b1dd9899a4ae5651967cdcd00c1edf10cc9753 (patch)
treea4c03cbb465411430d4ebf3ede729fa45700fce3 /common/query.h
parent3257ee0e6e0d9c3e0ad7d016e2bf9de098535894 (diff)
downloadsink-d4b1dd9899a4ae5651967cdcd00c1edf10cc9753.tar.gz
sink-d4b1dd9899a4ae5651967cdcd00c1edf10cc9753.zip
Use a list instead of a set for requested properties
We want to maintain the order since we use the list in the model result
Diffstat (limited to 'common/query.h')
-rw-r--r--common/query.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/query.h b/common/query.h
index 5313fa9..0d0f382 100644
--- a/common/query.h
+++ b/common/query.h
@@ -52,7 +52,7 @@ public:
52 //Filters to apply 52 //Filters to apply
53 QHash<QByteArray, QVariant> propertyFilter; 53 QHash<QByteArray, QVariant> propertyFilter;
54 //Properties to retrieve 54 //Properties to retrieve
55 QSet<QByteArray> requestedProperties; 55 QByteArrayList requestedProperties;
56 QByteArray parentProperty; 56 QByteArray parentProperty;
57 bool syncOnDemand; 57 bool syncOnDemand;
58 bool processAll; 58 bool processAll;