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 @brief Key event
@see @ref keyPressEvent() @see @ref keyPressEvent(), @ref keyReleaseEvent()
*/ */
class GlfwApplication::KeyEvent: public GlfwApplication::InputEvent { class GlfwApplication::KeyEvent: public GlfwApplication::InputEvent {
friend GlfwApplication; friend GlfwApplication;
@ -756,12 +756,7 @@ class GlfwApplication::KeyEvent: public GlfwApplication::InputEvent {
/** @brief Modifiers */ /** @brief Modifiers */
constexpr Modifiers modifiers() const { return _modifiers; } constexpr Modifiers modifiers() const { return _modifiers; }
/** /** @copydoc Sdl2Application::KeyEvent::isRepeated() */
* @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.
*/
constexpr bool isRepeated() const { return _repeated; } constexpr bool isRepeated() const { return _repeated; }
private: private:

Loading…
Cancel
Save