diff options
| author | Alexander Volkov <[email protected]> | 2016-11-26 12:40:58 +0300 |
|---|---|---|
| committer | Alexander Volkov <[email protected]> | 2016-12-01 12:07:13 +0000 |
| commit | 7183fc8f0d2d1e16c52fe78d029ee9fa13868b79 (patch) | |
| tree | bb6cb13ada8ded9613039becf02b2c0d6b7e039c /src/opengl/qglpixelbuffer_p.h | |
| parent | ed6f1290262af7a5e64c732d91df52e5968e1067 (diff) | |
Add missing override into Qt modules
Change-Id: I014ac8c7b590c77b054fbb01f0ab5601c44ca88e
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/opengl/qglpixelbuffer_p.h')
| -rw-r--r-- | src/opengl/qglpixelbuffer_p.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/opengl/qglpixelbuffer_p.h b/src/opengl/qglpixelbuffer_p.h index 6416e41773b..9125fcfb4bf 100644 --- a/src/opengl/qglpixelbuffer_p.h +++ b/src/opengl/qglpixelbuffer_p.h @@ -63,11 +63,11 @@ class QOpenGLFramebufferObject; class QGLPBufferGLPaintDevice : public QGLPaintDevice { public: - virtual QPaintEngine* paintEngine() const {return pbuf->paintEngine();} - virtual QSize size() const {return pbuf->size();} - virtual QGLContext* context() const; - virtual void beginPaint(); - virtual void endPaint(); + QPaintEngine* paintEngine() const override {return pbuf->paintEngine();} + QSize size() const override {return pbuf->size();} + QGLContext* context() const override; + void beginPaint() override; + void endPaint() override; void setPBuffer(QGLPixelBuffer* pb); void setFbo(GLuint fbo); private: |
