Skip to content

Commit

Permalink
Platform: Fix typo in KeyEvent::Key::Smicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Squareys <squareys@googlemail.com>
  • Loading branch information
Squareys committed Dec 17, 2018
1 parent a556af6 commit a976270
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Magnum/Platform/GlfwApplication.h
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,11 @@ class GlfwApplication::KeyEvent: public GlfwApplication::InputEvent {
Slash = GLFW_KEY_SLASH, /**< Slash */
/* Note: This may only be represented as SHIFT + 5 */
Percent = '%', /**< Percent */
Smicolon = GLFW_KEY_SEMICOLON, /**< Semicolon */
Semicolon = GLFW_KEY_SEMICOLON, /**< Semicolon */
#ifndef CORRADE_BUILD_DEPRECATED
CORRADE_DEPRECATED("Use KeyEvent::Key::Semicolon instead")
Smicolon = Semicolon, /**< Semicolon */
#endif
Equal = GLFW_KEY_EQUAL, /**< Equal */

Zero = GLFW_KEY_0, /**< Zero */
Expand Down

0 comments on commit a976270

Please sign in to comment.