forked from qt-creator/qt-creator
Use Utils::Storage instead of QVariantMap in a few places
Change-Id: I02833cf2bc3caaadc22ff93ae530e4aebe4c3868 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
@@ -31,8 +31,8 @@ public:
|
||||
void setAllValues(const QString &values, QStringList &additionalArguments);
|
||||
void setCMakeConfiguration(const CMakeConfig &config);
|
||||
|
||||
void fromMap(const QVariantMap &map) final;
|
||||
void toMap(QVariantMap &map) const final;
|
||||
void fromMap(const Utils::Storage &map) final;
|
||||
void toMap(Utils::Storage &map) const final;
|
||||
|
||||
private:
|
||||
CMakeConfig m_cmakeConfiguration;
|
||||
@@ -44,8 +44,8 @@ public:
|
||||
ConfigureEnvironmentAspect(Utils::AspectContainer *container,
|
||||
ProjectExplorer::BuildConfiguration *buildConfig);
|
||||
|
||||
void fromMap(const QVariantMap &map);
|
||||
void toMap(QVariantMap &map) const;
|
||||
void fromMap(const Utils::Storage &map);
|
||||
void toMap(Utils::Storage &map) const;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user