summaryrefslogtreecommitdiffstats
path: root/src/network/access/qhstsstore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/access/qhstsstore.cpp')
-rw-r--r--src/network/access/qhstsstore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/access/qhstsstore.cpp b/src/network/access/qhstsstore.cpp
index 6d7f60ba8d..67be8a2de2 100644
--- a/src/network/access/qhstsstore.cpp
+++ b/src/network/access/qhstsstore.cpp
@@ -76,13 +76,13 @@ QHstsStore::~QHstsStore()
synchronize();
}
-QVector<QHstsPolicy> QHstsStore::readPolicies()
+QList<QHstsPolicy> QHstsStore::readPolicies()
{
// This function only attempts to read policies, making no decision about
// expired policies. It's up to a user (QHstsCache) to mark these policies
// for deletion and sync the store later. But we immediately remove keys/values
// (if the store isWritable) for the policies that we fail to read.
- QVector<QHstsPolicy> policies;
+ QList<QHstsPolicy> policies;
beginHstsGroups();