[vlc-commits] qt: add missing override specifier
Marvin Scholz
git at videolan.org
Sun Jul 28 08:36:08 CEST 2019
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Fri Jul 26 21:32:46 2019 +0200| [52d261a014748f7aa404df0be437af31cda27bf5] | committer: Jean-Baptiste Kempf
qt: add missing override specifier
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=52d261a014748f7aa404df0be437af31cda27bf5
---
modules/gui/qt/components/extended_panels.hpp | 2 +-
modules/gui/qt/components/voutwindow/qvoutwindowdummy.hpp | 2 +-
modules/gui/qt/dialogs/plugins.hpp | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt/components/extended_panels.hpp b/modules/gui/qt/components/extended_panels.hpp
index ee2a61cf22..b36659afd6 100644
--- a/modules/gui/qt/components/extended_panels.hpp
+++ b/modules/gui/qt/components/extended_panels.hpp
@@ -165,7 +165,7 @@ protected:
float initialValue() Q_DECL_OVERRIDE;
int index;
QStringList getBandsFromAout() const;
- void writeToConfig();
+ void writeToConfig() override;
public slots:
void onValueChanged( int i ) Q_DECL_OVERRIDE;
diff --git a/modules/gui/qt/components/voutwindow/qvoutwindowdummy.hpp b/modules/gui/qt/components/voutwindow/qvoutwindowdummy.hpp
index 5fbceddc71..7a8a395719 100644
--- a/modules/gui/qt/components/voutwindow/qvoutwindowdummy.hpp
+++ b/modules/gui/qt/components/voutwindow/qvoutwindowdummy.hpp
@@ -44,7 +44,7 @@ public:
VideoSurfaceProvider* getVideoSurfaceProvider() override;
- bool setupVoutWindow(vout_window_t* voutWindow);
+ bool setupVoutWindow(vout_window_t* voutWindow) override;
private:
VideoSurfaceProviderDummy* m_surfaceProvider = nullptr;
diff --git a/modules/gui/qt/dialogs/plugins.hpp b/modules/gui/qt/dialogs/plugins.hpp
index 014016d9cc..12705a91d2 100644
--- a/modules/gui/qt/dialogs/plugins.hpp
+++ b/modules/gui/qt/dialogs/plugins.hpp
@@ -141,7 +141,7 @@ private slots:
private:
AddonsTab( intf_thread_t *p_intf );
virtual ~AddonsTab();
- bool eventFilter ( QObject * watched, QEvent * event );
+ bool eventFilter ( QObject * watched, QEvent * event ) override;
enum
{
More information about the vlc-commits
mailing list