diff options
Diffstat (limited to 'desktop-widgets/kmessagewidget.h')
-rw-r--r-- | desktop-widgets/kmessagewidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/desktop-widgets/kmessagewidget.h b/desktop-widgets/kmessagewidget.h index 61a034280..74568789f 100644 --- a/desktop-widgets/kmessagewidget.h +++ b/desktop-widgets/kmessagewidget.h @@ -186,18 +186,18 @@ public: /** * Returns the preferred size of the message widget. */ - QSize sizeHint() const override; + QSize sizeHint() const; /** * Returns the minimum size of the message widget. */ - QSize minimumSizeHint() const override; + QSize minimumSizeHint() const; /** * Returns the required height for @p width. * @param width the width in pixels */ - int heightForWidth(int width) const override; + int heightForWidth(int width) const; /** * 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) override; + void paintEvent(QPaintEvent *event); - bool event(QEvent *event) override; + bool event(QEvent *event); - void resizeEvent(QResizeEvent *event) override; + void resizeEvent(QResizeEvent *event); private: KMessageWidgetPrivate *const d; |