From 3d92162505f01d6953724d1dd4757dce51a1cf46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 15 Nov 2012 20:58:14 +0100 Subject: [PATCH] Sdl2Application: cursor position for key events is not available either. --- src/Platform/Sdl2Application.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Platform/Sdl2Application.h b/src/Platform/Sdl2Application.h index caa4ef31c..81f8272d2 100644 --- a/src/Platform/Sdl2Application.h +++ b/src/Platform/Sdl2Application.h @@ -202,7 +202,7 @@ class Sdl2Application { * @brief Key press event * @param key Key pressed * @param modifiers Active modifiers - * @param position Cursor position (not yet implemented) + * @param position Cursor position (not implemented) */ virtual void keyPressEvent(Key key, Modifiers modifiers, const Math::Vector2& position); @@ -210,7 +210,7 @@ class Sdl2Application { * @brief Key release event * @param key Key released * @param modifiers Active modifiers - * @param position Cursor position (not yet implemented) + * @param position Cursor position (not implemented) */ virtual void keyReleaseEvent(Key key, Modifiers modifiers, const Math::Vector2& position);