diff --git a/src/Magnum/Platform/AbstractXApplication.h b/src/Magnum/Platform/AbstractXApplication.h index 73f7c6faf..00eee6066 100644 --- a/src/Magnum/Platform/AbstractXApplication.h +++ b/src/Magnum/Platform/AbstractXApplication.h @@ -263,33 +263,6 @@ class AbstractXApplication::InputEvent { Ctrl = ControlMask, /**< Ctrl */ Alt = Mod1Mask, /**< Alt */ AltGr = Mod5Mask, /**< AltGr */ - - #ifdef MAGNUM_BUILD_DEPRECATED - /** - * @copybrief Button::Left - * @deprecated Use @ref Magnum::Platform::AbstractXApplication::InputEvent::buttons() "buttons()" - * and @ref Magnum::Platform::AbstractXApplication::InputEvent::Button::Left "Button::Left" - * instead. - */ - LeftButton = Button1Mask, - - /** - * @copybrief Button::Middle - * @deprecated Use @ref Magnum::Platform::AbstractXApplication::InputEvent::buttons() "buttons()" - * and @ref Magnum::Platform::AbstractXApplication::InputEvent::Button::Middle "Button::Middle" - * instead. - */ - MiddleButton = Button2Mask, - - /** - * @copybrief Button::Right - * @deprecated Use @ref Magnum::Platform::AbstractXApplication::InputEvent::buttons() "buttons()" - * and @ref Magnum::Platform::AbstractXApplication::InputEvent::Button::Right "Button::Right" - * instead. - */ - RightButton = Button3Mask, - #endif - CapsLock = LockMask, /**< Caps lock */ NumLock = Mod2Mask /**< Num lock */ }; diff --git a/src/Magnum/Platform/NaClApplication.h b/src/Magnum/Platform/NaClApplication.h index d04899d54..63fe8c491 100644 --- a/src/Magnum/Platform/NaClApplication.h +++ b/src/Magnum/Platform/NaClApplication.h @@ -474,33 +474,6 @@ class NaClApplication::InputEvent { Ctrl = PP_INPUTEVENT_MODIFIER_CONTROLKEY, /**< Ctrl */ Alt = PP_INPUTEVENT_MODIFIER_ALTKEY, /**< Alt */ Meta = PP_INPUTEVENT_MODIFIER_METAKEY, /**< Meta */ - - #ifdef MAGNUM_BUILD_DEPRECATED - /** - * @copybrief Button::Left - * @deprecated Use @ref Magnum::Platform::NaClApplication::InputEvent::buttons() "buttons()" - * and @ref Magnum::Platform::NaClApplication::InputEvent::Button::Left "Button::Left" - * instead. - */ - LeftButton = PP_INPUTEVENT_MODIFIER_LEFTBUTTONDOWN, - - /** - * @copybrief Button::Middle - * @deprecated Use @ref Magnum::Platform::NaClApplication::InputEvent::buttons() "buttons()" - * and @ref Magnum::Platform::NaClApplication::InputEvent::Button::Middle "Button::Middle" - * instead. - */ - MiddleButton = PP_INPUTEVENT_MODIFIER_MIDDLEBUTTONDOWN, - - /** - * @copybrief Button::Right - * @deprecated Use @ref Magnum::Platform::NaClApplication::InputEvent::buttons() "buttons()" - * and @ref Magnum::Platform::NaClApplication::InputEvent::Button::Right "Button::Right" - * instead. - */ - RightButton = PP_INPUTEVENT_MODIFIER_RIGHTBUTTONDOWN, - #endif - CapsLock = PP_INPUTEVENT_MODIFIER_CAPSLOCKKEY, /**< Caps lock */ NumLock = PP_INPUTEVENT_MODIFIER_NUMLOCKKEY /**< Num lock */ };