summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-25 08:26:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-25 08:26:57 +0200
commite5b927651de97f2f0fdeb3e7f4715eb40a0917d9 (patch)
tree0196e247c7d29f79ea31e209b933f871897697f0 /vcl
parent112d7c1d24ab786bfabdcfbd092718c8af392c7a (diff)
-Werror,-Winconsistent-missing-override
Change-Id: I15a8399d120450b01bd35c7ad974d3af749811ad
Diffstat (limited to 'vcl')
-rw-r--r--vcl/opengl/win/gdiimpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/opengl/win/gdiimpl.cxx b/vcl/opengl/win/gdiimpl.cxx
index 8be4bd65f3ff..4b3e836bb173 100644
--- a/vcl/opengl/win/gdiimpl.cxx
+++ b/vcl/opengl/win/gdiimpl.cxx
@@ -41,8 +41,8 @@ public:
virtual bool initWindow() override;
private:
GLWinWindow m_aGLWin;
- virtual const GLWindow& getOpenGLWindow() const { return m_aGLWin; }
- virtual GLWindow& getModifiableOpenGLWindow() { return m_aGLWin; }
+ virtual const GLWindow& getOpenGLWindow() const override { return m_aGLWin; }
+ virtual GLWindow& getModifiableOpenGLWindow() override { return m_aGLWin; }
virtual bool ImplInit() override;
virtual void makeCurrent() override;
virtual void destroyCurrentContext() override;