diff options
author | Tobias Hunger <[email protected]> | 2018-05-07 15:06:53 +0200 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2018-05-07 15:44:21 +0000 |
commit | 2ec6cf104138cfbaf28064bec2f2a63bf20bf3b7 (patch) | |
tree | 34ea981fbdf0493d16f3a2119e1af719b10a506b /src/plugins/debugger/shared | |
parent | 3890f5d67df5ac1b599bd2601ae8c643559ef99a (diff) |
Debugger: Use override consistently
clang-tidy fixes from modernize-use-override check.
Change-Id: I6a20484716dc5bd84fe9592b40ae57be66fe32bf
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/shared')
-rw-r--r-- | src/plugins/debugger/shared/cdbsymbolpathlisteditor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h index fbbb78de06c..99098368894 100644 --- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h +++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.h @@ -53,7 +53,7 @@ public: void setPath(const QString &p); QString path() const; - virtual void accept(); + void accept() override; private: Utils::PathChooser *m_chooser; |