summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plugins/projectexplorer/projectconfiguration.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/projectconfiguration.h b/src/plugins/projectexplorer/projectconfiguration.h
index 0cfa99d6de..cffcb1f58e 100644
--- a/src/plugins/projectexplorer/projectconfiguration.h
+++ b/src/plugins/projectexplorer/projectconfiguration.h
@@ -57,7 +57,10 @@ public:
void setDisplayName(const QString &name);
void setDefaultDisplayName(const QString &name);
- // Note: Make sure subclasses call the superclasses toMap() method!
+ // Note: Make sure subclasses call the superclasses' fromMap() method!
+ virtual bool fromMap(const QVariantMap &map);
+
+ // Note: Make sure subclasses call the superclasses' toMap() method!
virtual QVariantMap toMap() const;
signals:
@@ -67,9 +70,6 @@ protected:
ProjectConfiguration(QObject *parent, const QString &id);
ProjectConfiguration(QObject *parent, const ProjectConfiguration *source);
- // Note: Make sure subclasses call the superclasses toMap() method!
- virtual bool fromMap(const QVariantMap &map);
-
private:
Q_DISABLE_COPY(ProjectConfiguration)