From 770f090a6c84fb92e1c467545ebae37bbda55123 Mon Sep 17 00:00:00 2001 From: Anton Kudryavtsev Date: Mon, 3 Oct 2016 10:37:07 +0300 Subject: computegles31 example: fix warning -Winconsistent-missing-override Change-Id: I48847b329c10277820f67dc11fc86f2a84d6b303 Reviewed-by: Laszlo Agocs --- examples/opengl/computegles31/glwindow.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/opengl') diff --git a/examples/opengl/computegles31/glwindow.h b/examples/opengl/computegles31/glwindow.h index a55c5491be..15ece01780 100644 --- a/examples/opengl/computegles31/glwindow.h +++ b/examples/opengl/computegles31/glwindow.h @@ -68,9 +68,9 @@ public: 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); -- cgit v1.2.3