Skip to content

Commit

Permalink
computegles31 example: fix warning -Winconsistent-missing-override
Browse files Browse the repository at this point in the history
Change-Id: I48847b329c10277820f67dc11fc86f2a84d6b303
Reviewed-by: Laszlo Agocs <[email protected]>
  • Loading branch information
Anton Kudryavtsev committed Oct 3, 2016
1 parent 28f5d79 commit 770f090
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/opengl/computegles31/glwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ class GLWindow : public QOpenGLWindow
GLWindow();
~GLWindow();

void initializeGL();
void resizeGL(int w, int h);
void paintGL();
void initializeGL() override;
void resizeGL(int w, int h) override;
void paintGL() override;

float blurRadius() const { return m_blurRadius; }
void setBlurRadius(float blurRadius);
Expand Down

0 comments on commit 770f090

Please sign in to comment.