summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-03-09 13:30:13 +0100
committerTobias Hunger <tobias.hunger@qt.io>2018-03-09 12:57:59 +0000
commit835d4e92f3fafc1ec2de1ee1aa5e8982b1a2b99f (patch)
tree72013714f1c8f22b4bca31806618ba9dd024b881 /src/plugins/cpptools
parent964476983e9ddce64aad635ec515a00f7ce15e1a (diff)
downloadqt-creator-835d4e92f3fafc1ec2de1ee1aa5e8982b1a2b99f.tar.gz
Project: Improve default implementation of Project::needsConfiguration
Change-Id: Ic4d227334d818658f179c0589462551509274c17 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/cpptools')
-rw-r--r--src/plugins/cpptools/modelmanagertesthelper.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/cpptools/modelmanagertesthelper.h b/src/plugins/cpptools/modelmanagertesthelper.h
index 47e49fefe9..a228f70a83 100644
--- a/src/plugins/cpptools/modelmanagertesthelper.h
+++ b/src/plugins/cpptools/modelmanagertesthelper.h
@@ -42,6 +42,8 @@ class CPPTOOLS_EXPORT TestProject: public ProjectExplorer::Project
public:
TestProject(const QString &name, QObject *parent);
+ bool needsConfiguration() const final { return false; }
+
private:
QString m_name;
};