diff options
author | Christian Stenger <[email protected]> | 2018-07-11 15:44:51 +0200 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2018-07-20 08:34:48 +0000 |
commit | 1d894c0f7a41512005c3ddaa3705e3fdc639c6db (patch) | |
tree | 073242e02544d5409457d1afc47a0aa7f348d57a /src/plugins/autotest/testresultspane.h | |
parent | b8da47af9c8247e171a3baf29c125782fbebdad0 (diff) |
AutoTest: Code cosmetics
* use nullptr
* override
* remove old style casts
* fix most of the code model warnings
Change-Id: Ia08e846f9326ae28ca7e7d66748e25a8b817b9b1
Reviewed-by: Xing Xiong
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/autotest/testresultspane.h')
-rw-r--r-- | src/plugins/autotest/testresultspane.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/autotest/testresultspane.h b/src/plugins/autotest/testresultspane.h index 9cedf7e7c6b..7dcd1f94be7 100644 --- a/src/plugins/autotest/testresultspane.h +++ b/src/plugins/autotest/testresultspane.h @@ -72,7 +72,7 @@ class TestResultsPane : public Core::IOutputPane { Q_OBJECT public: - virtual ~TestResultsPane(); + ~TestResultsPane() override; static TestResultsPane *instance(); // IOutputPane interface @@ -119,7 +119,7 @@ private: void toggleOutputStyle(); QString getWholeOutput(const QModelIndex &parent = QModelIndex()); - void createMarks(const QModelIndex& parent = QModelIndex()); + void createMarks(const QModelIndex &parent = QModelIndex()); void clearMarks(); QStackedWidget *m_outputWidget; |