summaryrefslogtreecommitdiff
path: root/include/vcl/settings.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-02-18 14:30:54 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-02-18 15:48:31 +0000
commitcee3b45977d34f290e50a8fbc8b0dd60ef10faae (patch)
treefbae2d3fbf02e33ef6e240ab48cc8ac4f7ada2d6 /include/vcl/settings.hxx
parent305a164e8b1094a041373ab9808aedcf4c76a1b6 (diff)
StyleSettingsOptions Only NONE, Mono and NoMnemonics are in use
ditch the rest Change-Id: I3383023958f528d9d0d6ba715356d8d6a6aecd5a
Diffstat (limited to 'include/vcl/settings.hxx')
-rw-r--r--include/vcl/settings.hxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx
index 72283aa0fc77..acbacf3346d0 100644
--- a/include/vcl/settings.hxx
+++ b/include/vcl/settings.hxx
@@ -179,17 +179,11 @@ enum class StyleSettingsOptions
{
NONE = 0x0000,
Mono = 0x0001,
- Color = 0x0002,
- Flat = 0x0004,
- Great = 0x0008,
- Highlight = 0x0010,
- AdvancedUser = 0x0020,
- ScrollArrow = 0x0040,
- NoMnemonics = 0x0080,
+ NoMnemonics = 0x0002,
};
namespace o3tl
{
- template<> struct typed_flags<StyleSettingsOptions> : is_typed_flags<StyleSettingsOptions, 0x00ff> {};
+ template<> struct typed_flags<StyleSettingsOptions> : is_typed_flags<StyleSettingsOptions, 0x0003> {};
}
enum class DragFullOptions