From bd24edd2adacff55fa9635e1c661c75edeade513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 16 Aug 2016 19:17:28 +0200 Subject: [PATCH] Platform: doc cleanup. --- src/Magnum/Platform/GlfwApplication.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index af7a002bf..1dfdfad48 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -569,7 +569,7 @@ CORRADE_ENUMSET_OPERATORS(GlfwApplication::InputEvent::Modifiers) /** @brief Key event -@see @ref keyPressEvent() +@see @ref keyPressEvent(), @ref keyReleaseEvent() */ class GlfwApplication::KeyEvent: public GlfwApplication::InputEvent { friend GlfwApplication; @@ -756,12 +756,7 @@ class GlfwApplication::KeyEvent: public GlfwApplication::InputEvent { /** @brief Modifiers */ constexpr Modifiers modifiers() const { return _modifiers; } - /** - * @brief Whether the key press is repeated - * - * Returns `true` if the key press event is repeated, `false` if not or - * if this was key release event. - */ + /** @copydoc Sdl2Application::KeyEvent::isRepeated() */ constexpr bool isRepeated() const { return _repeated; } private: