aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/itestframework.h
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2018-05-31 07:38:04 +0200
committerChristian Stenger <christian.stenger@qt.io>2018-06-19 07:40:09 +0000
commitad8e67cea39311a895ece59d8d56f5f065200e26 (patch)
treeb0876e5d89102b6a9b527f96408a98420c889a36 /src/plugins/autotest/itestframework.h
parent73d9c2fff356012e02d83b8b1a8724b3b29f1389 (diff)
AutoTest: Code cosmetics
Change-Id: I49a73b83b1b6857c34913db8f7c6818cf7a1a129 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/autotest/itestframework.h')
-rw-r--r--src/plugins/autotest/itestframework.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/autotest/itestframework.h b/src/plugins/autotest/itestframework.h
index ec24bfa3a0..abcc218406 100644
--- a/src/plugins/autotest/itestframework.h
+++ b/src/plugins/autotest/itestframework.h
@@ -47,11 +47,11 @@ public:
virtual const char *name() const = 0;
virtual unsigned priority() const = 0; // should this be modifyable?
virtual bool hasFrameworkSettings() const { return false; }
- virtual IFrameworkSettings *createFrameworkSettings() const { return 0; }
+ virtual IFrameworkSettings *createFrameworkSettings() const { return nullptr; }
virtual ITestSettingsPage *createSettingsPage(QSharedPointer<IFrameworkSettings> settings) const
{
Q_UNUSED(settings);
- return 0;
+ return nullptr;
}
TestTreeItem *rootNode()
@@ -78,8 +78,8 @@ protected:
virtual TestTreeItem *createRootNode() const = 0;
private:
- TestTreeItem *m_rootNode = 0;
- ITestParser *m_testParser = 0;
+ TestTreeItem *m_rootNode = nullptr;
+ ITestParser *m_testParser = nullptr;
bool m_active = false;
bool m_grouping = false;
};