summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/winrt/qwinrteglcontext.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2016-11-30 12:47:22 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2016-11-30 10:51:36 +0000
commitaac3a4c032d3aa96c8c25402bbc72c78348401d0 (patch)
tree9642730ae95fd6ca6addb4858e055f5c3c2950eb /src/plugins/platforms/winrt/qwinrteglcontext.h
parent0a2759e8f8c0fa295eff1a5bb5aefd074851d5d6 (diff)
winrt: Replace Q_DECL_OVERRIDE by override
We can use 'override' keyword directly since Qt 5.7. Change-Id: I31127478a0a96798a4e018d9996842204e307552 Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Diffstat (limited to 'src/plugins/platforms/winrt/qwinrteglcontext.h')
-rw-r--r--src/plugins/platforms/winrt/qwinrteglcontext.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/platforms/winrt/qwinrteglcontext.h b/src/plugins/platforms/winrt/qwinrteglcontext.h
index 12b6238cb1..5c75aa90d0 100644
--- a/src/plugins/platforms/winrt/qwinrteglcontext.h
+++ b/src/plugins/platforms/winrt/qwinrteglcontext.h
@@ -52,14 +52,14 @@ public:
explicit QWinRTEGLContext(QOpenGLContext *context);
~QWinRTEGLContext();
- void initialize() Q_DECL_OVERRIDE;
+ void initialize() override;
- bool makeCurrent(QPlatformSurface *windowSurface) Q_DECL_OVERRIDE;
- void doneCurrent() Q_DECL_OVERRIDE;
- void swapBuffers(QPlatformSurface *windowSurface) Q_DECL_OVERRIDE;
+ bool makeCurrent(QPlatformSurface *windowSurface) override;
+ void doneCurrent() override;
+ void swapBuffers(QPlatformSurface *windowSurface) override;
- QSurfaceFormat format() const Q_DECL_OVERRIDE;
- QFunctionPointer getProcAddress(const char *procName) Q_DECL_OVERRIDE;
+ QSurfaceFormat format() const override;
+ QFunctionPointer getProcAddress(const char *procName) override;
static EGLDisplay display();
private: