From 7669271b56fda7fa8a4cb1513776bb6e81b09a5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 4 Aug 2012 20:06:54 +0200 Subject: [PATCH] EglContext: forgot to revert this back. --- src/Contexts/EglContext.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Contexts/EglContext.h b/src/Contexts/EglContext.h index 2779b7708..62e20be7e 100644 --- a/src/Contexts/EglContext.h +++ b/src/Contexts/EglContext.h @@ -111,7 +111,7 @@ class EglContext: public AbstractContext { * * Called when an key is pressed. Default implementation does nothing. */ - virtual void keyPressEvent(Key key, const Math::Vector2& position) = 0; + virtual void keyPressEvent(Key key, const Math::Vector2& position); /** * @brief Key press event @@ -120,7 +120,7 @@ class EglContext: public AbstractContext { * * Called when an key is released. Default implementation does nothing. */ - virtual void keyReleaseEvent(Key key, const Math::Vector2& position) = 0; + virtual void keyReleaseEvent(Key key, const Math::Vector2& position); /*@}*/