aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/project.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-08-23 16:11:48 +0200
committerhjk <hjk@qt.io>2023-08-23 14:30:50 +0000
commitdc6b40a5c008405606fc22092a9361786a047dda (patch)
tree9e66c2d6e20d0c57f6447271e9ec26927a2b46bc /src/plugins/projectexplorer/project.cpp
parent55b5b8a975eb806594d1d0357293f40c27f01c06 (diff)
Use Utils::Storage instead of QVariantMap in a few places
Change-Id: I02833cf2bc3caaadc22ff93ae530e4aebe4c3868 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/project.cpp')
-rw-r--r--src/plugins/projectexplorer/project.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/project.cpp b/src/plugins/projectexplorer/project.cpp
index fd91b4aaf5..af61ba60a4 100644
--- a/src/plugins/projectexplorer/project.cpp
+++ b/src/plugins/projectexplorer/project.cpp
@@ -691,7 +691,7 @@ FilePaths Project::files(const NodeMatcher &filter) const
creating new build configurations.
*/
-void Project::toMap(QVariantMap &map) const
+void Project::toMap(Storage &map) const
{
const QList<Target *> ts = targets();
@@ -764,7 +764,7 @@ ContainerNode *Project::containerNode() const
return d->m_containerNode.get();
}
-Project::RestoreResult Project::fromMap(const QVariantMap &map, QString *errorMessage)
+Project::RestoreResult Project::fromMap(const Storage &map, QString *errorMessage)
{
Q_UNUSED(errorMessage)
if (map.contains(QLatin1String(EDITOR_SETTINGS_KEY))) {