Browse Source

Platform: doc cleanup.

pull/165/merge
Vladimír Vondruš 10 years ago
parent
commit
bd24edd2ad
  1. 9
      src/Magnum/Platform/GlfwApplication.h

9
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:

Loading…
Cancel
Save