aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/projectintropage.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-05-07 15:07:21 +0200
committerOrgad Shaneh <orgads@gmail.com>2018-05-13 19:42:50 +0000
commit07e67b21880525265b8e85efb1df257a166171ea (patch)
tree98d6c1a7da3088b4c78464c012be325cad0ce980 /src/libs/utils/projectintropage.h
parent86b368f91270fc74ff7152bf51d71961c21bbef4 (diff)
Utils: Use override consistently
clang-tidy fixes from modernize-use-override check. Change-Id: I89d27f359b6ee507153cb3712f61f81471ff0858 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/libs/utils/projectintropage.h')
-rw-r--r--src/libs/utils/projectintropage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/utils/projectintropage.h b/src/libs/utils/projectintropage.h
index 75d8a9fab4..98b51693ae 100644
--- a/src/libs/utils/projectintropage.h
+++ b/src/libs/utils/projectintropage.h
@@ -43,7 +43,7 @@ class QTCREATOR_UTILS_EXPORT ProjectIntroPage : public WizardPage
public:
explicit ProjectIntroPage(QWidget *parent = 0);
- virtual ~ProjectIntroPage();
+ ~ProjectIntroPage() override;
QString projectName() const;
QString path() const;
@@ -53,7 +53,7 @@ public:
// Insert an additional control into the form layout for the target.
void insertControl(int row, QWidget *label, QWidget *control);
- virtual bool isComplete() const;
+ bool isComplete() const override;
bool forceSubProject() const;
void setForceSubProject(bool force);