diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-02-18 14:20:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-02-18 15:48:31 +0000 |
commit | 473b03d1a4b7cdd72551a9039f6cc76a808cce58 (patch) | |
tree | e11f3ab4bb7071adaabc9caae97b101fcab06265 /include | |
parent | 55b33456c14aa5311fb0e3d71f1cad4fbd73cbef (diff) |
StyleSettingsOptions::SpinUpDown is not set by anyone
Change-Id: I26d5189b6a20844bac2a671a30def1b01aa786a8
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/settings.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx index 537cb8f0c140..5fe497b8de30 100644 --- a/include/vcl/settings.hxx +++ b/include/vcl/settings.hxx @@ -186,12 +186,11 @@ enum class StyleSettingsOptions AdvancedUser = 0x0020, ScrollArrow = 0x0040, SpinArrow = 0x0080, - SpinUpDown = 0x0100, - NoMnemonics = 0x0200, + NoMnemonics = 0x0100, }; namespace o3tl { - template<> struct typed_flags<StyleSettingsOptions> : is_typed_flags<StyleSettingsOptions, 0x03ff> {}; + template<> struct typed_flags<StyleSettingsOptions> : is_typed_flags<StyleSettingsOptions, 0x01ff> {}; } enum class DragFullOptions |