Browse Source

Platform: no need to have GlutApplication::redraw() virtual.

The other implementations aren't virtual too.
pull/34/head
Vladimír Vondruš 13 years ago
parent
commit
af3ecdc126
  1. 2
      src/Platform/GlutApplication.h

2
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(); }
/*@}*/

Loading…
Cancel
Save