summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-07-06 15:35:45 (GMT)
committerBrad King <brad.king@kitware.com>2020-07-06 15:45:03 (GMT)
commit8eb7cf9b5ff28d336fc06ca989ab1d0f9eb9cecb (patch)
treed34219d85d43c47eed9b5f390e9c72f014982198 /Source
parent1e26c84b96c0ec6887de2cf5e14061ccb83bdbfe (diff)
downloadCMake-8eb7cf9b5ff28d336fc06ca989ab1d0f9eb9cecb.zip
CMake-8eb7cf9b5ff28d336fc06ca989ab1d0f9eb9cecb.tar.gz
CMake-8eb7cf9b5ff28d336fc06ca989ab1d0f9eb9cecb.tar.bz2
cmake-gui: Fix compilation as C++14 with Qt 5.14
Fix code added by commit d7679f6427 (QCMakeCacheView: use non-deprecated List and Set constructions, 2020-06-10, v3.18.0-rc2~13^2), used conditionally on Qt 5.14 or above, to compile as C++14.
Diffstat (limited to 'Source')
-rw-r--r--Source/QtDialog/QCMakeCacheView.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/QtDialog/QCMakeCacheView.cxx b/Source/QtDialog/QCMakeCacheView.cxx
index 541d3e9..b1f4a82 100644
--- a/Source/QtDialog/QCMakeCacheView.cxx
+++ b/Source/QtDialog/QCMakeCacheView.cxx
@@ -220,14 +220,14 @@ void QCMakeCacheModel::setProperties(const QCMakePropertyList& props)
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
newProps = props.toSet();
#else
- newProps = QSet(props.begin(), props.end());
+ newProps = QSet<QCMakeProperty>(props.begin(), props.end());
#endif
newProps2 = newProps;
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
QSet<QCMakeProperty> oldProps = this->properties().toSet();
#else
- QSet<QCMakeProperty> oldProps =
- QSet(this->properties().begin(), this->properties().end());
+ QSet<QCMakeProperty> oldProps = QSet<QCMakeProperty>(
+ this->properties().begin(), this->properties().end());
#endif
oldProps.intersect(newProps);
newProps.subtract(oldProps);
@@ -236,7 +236,7 @@ void QCMakeCacheModel::setProperties(const QCMakePropertyList& props)
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
newProps2 = props.toSet();
#else
- newProps2 = QSet(props.begin(), props.end());
+ newProps2 = QSet<QCMakeProperty>(props.begin(), props.end());
#endif
}