summaryrefslogtreecommitdiffstats
path: root/examples/activeqt/opengl/glbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/activeqt/opengl/glbox.h')
-rw-r--r--examples/activeqt/opengl/glbox.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/activeqt/opengl/glbox.h b/examples/activeqt/opengl/glbox.h
index 00be3b9..b1bd828 100644
--- a/examples/activeqt/opengl/glbox.h
+++ b/examples/activeqt/opengl/glbox.h
@@ -75,7 +75,7 @@ class GLBox : public QGLWidget,
public:
explicit GLBox(QWidget *parent, const char *name = nullptr);
virtual ~GLBox();
- QAxAggregated *createAggregate();
+ QAxAggregated *createAggregate() override;
public slots:
void setXRotation(int degrees);
@@ -84,9 +84,9 @@ public slots:
void setZRotation(int degrees);
protected:
- void initializeGL();
- void paintGL();
- void resizeGL(int w, int h);
+ void initializeGL() override;
+ void paintGL() override;
+ void resizeGL(int w, int h) override;
virtual GLuint makeObject();
private: