Utils: Use override consistently

clang-tidy fixes from modernize-use-override check.

Change-Id: I89d27f359b6ee507153cb3712f61f81471ff0858
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2018-05-07 15:07:21 +02:00
committed by Orgad Shaneh
parent 86b368f912
commit 07e67b2188
46 changed files with 122 additions and 117 deletions

View File

@@ -59,7 +59,7 @@ protected:
ToolTip();
public:
~ToolTip();
~ToolTip() override;
enum {
ColorContent = 0,
@@ -67,7 +67,7 @@ public:
WidgetContent = 42
};
bool eventFilter(QObject *o, QEvent *event);
bool eventFilter(QObject *o, QEvent *event) override;
static ToolTip *instance();