From ebdf234772cc89bd866d8da8a0131ea24f05d3cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 18 Jun 2016 21:09:05 +0200 Subject: [PATCH] Platform: removed refs to unimplemented features from GlfwApplication. --- src/Magnum/Platform/GlfwApplication.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index 4ba7537d4..056c3f355 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -211,17 +211,6 @@ class GlfwApplication { /** @{ @name Mouse handling */ public: - /** - * @brief Mouse cursor - * - * @see @ref setMouseCursor() - */ - enum class MouseCursor: int { - Default = GLFW_CURSOR_NORMAL, /**< Default cursor provided by parent window */ - Hidden = GLFW_CURSOR_HIDDEN, /**< Hidden cursor */ - None = GLFW_CURSOR_DISABLED /**< No cursor */ - }; - /** @brief Warp mouse cursor to given coordinates */ void warpCursor(const Vector2i& position) { glfwSetCursorPos(_window, Double(position.x()), Double(position.y())); @@ -243,7 +232,6 @@ class GlfwApplication { * * Called when any mouse button is pressed and mouse is moved. Default * implementation does nothing. - * @see @ref setMouseTracking() */ virtual void mouseMoveEvent(MouseMoveEvent& event);