From af3ecdc126c1899a21a62d2f3abd4a932592e9cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 7 Dec 2013 18:49:37 +0100 Subject: [PATCH] Platform: no need to have GlutApplication::redraw() virtual. The other implementations aren't virtual too. --- src/Platform/GlutApplication.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Platform/GlutApplication.h b/src/Platform/GlutApplication.h index 6259be010..275c319ce 100644 --- a/src/Platform/GlutApplication.h +++ b/src/Platform/GlutApplication.h @@ -187,7 +187,7 @@ class GlutApplication { * Marks the window for redrawing, resulting in call to drawEvent() * in the next iteration. */ - virtual void redraw() { glutPostRedisplay(); } + void redraw() { glutPostRedisplay(); } /*@}*/