diff options
author | Konstantin Tokarev <annulen@yandex.ru> | 2016-10-10 18:44:09 +0300 |
---|---|---|
committer | Konstantin Tokarev <annulen@yandex.ru> | 2016-10-10 21:21:40 +0000 |
commit | 45411b453d553abee71e61938c3e87af043cd044 (patch) | |
tree | d857d38a4cd1a2cd525d6c7331046c084fd4abb1 /Source/WebKit/qt/WidgetApi/qwebinspector.h | |
parent | dbc4556842aa6541b9c8ce48fe34a36811709e64 (diff) | |
download | qtwebkit-45411b453d553abee71e61938c3e87af043cd044.tar.gz |
Added missing Q_DECL_OVERRIDEs to QtWebKitWidgets headers
Change-Id: I2ab9287f17155b18f8caee3866d4125d4451a078
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'Source/WebKit/qt/WidgetApi/qwebinspector.h')
-rw-r--r-- | Source/WebKit/qt/WidgetApi/qwebinspector.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/WebKit/qt/WidgetApi/qwebinspector.h b/Source/WebKit/qt/WidgetApi/qwebinspector.h index d6a4aad3c..c5f097e27 100644 --- a/Source/WebKit/qt/WidgetApi/qwebinspector.h +++ b/Source/WebKit/qt/WidgetApi/qwebinspector.h @@ -36,14 +36,14 @@ public: void setPage(QWebPage* page); QWebPage* page() const; - QSize sizeHint() const; - bool event(QEvent*); + QSize sizeHint() const Q_DECL_OVERRIDE; + bool event(QEvent*) Q_DECL_OVERRIDE; protected: - void resizeEvent(QResizeEvent* event); - void showEvent(QShowEvent* event); - void hideEvent(QHideEvent* event); - void closeEvent(QCloseEvent* event); + void resizeEvent(QResizeEvent* event) Q_DECL_OVERRIDE; + void showEvent(QShowEvent* event) Q_DECL_OVERRIDE; + void hideEvent(QHideEvent* event) Q_DECL_OVERRIDE; + void closeEvent(QCloseEvent* event) Q_DECL_OVERRIDE; private: QWebInspectorPrivate* d; |