Cleanup: reinstate override modifiers

This reverts commit 1c4a859c8d,
where the override modifiers were removed owing to the noisy
"inconsistent override modifiers" which is default-on in clang.

This warning was disabled in 77577f717f,
so we can reinstate the overrides.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Berthold Stoeger 2018-09-29 22:13:44 +02:00 committed by Dirk Hohndel
parent d7e3d68f36
commit 574065b314
48 changed files with 196 additions and 196 deletions

View file

@ -186,18 +186,18 @@ public:
/**
* Returns the preferred size of the message widget.
*/
QSize sizeHint() const;
QSize sizeHint() const override;
/**
* Returns the minimum size of the message widget.
*/
QSize minimumSizeHint() const;
QSize minimumSizeHint() const override;
/**
* Returns the required height for @p width.
* @param width the width in pixels
*/
int heightForWidth(int width) const;
int heightForWidth(int width) const override;
/**
* The icon shown on the left of the text. By default, no icon is shown.
@ -326,11 +326,11 @@ Q_SIGNALS:
void showAnimationFinished();
protected:
void paintEvent(QPaintEvent *event);
void paintEvent(QPaintEvent *event) override;
bool event(QEvent *event);
bool event(QEvent *event) override;
void resizeEvent(QResizeEvent *event);
void resizeEvent(QResizeEvent *event) override;
private:
KMessageWidgetPrivate *const d;