diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-03 11:12:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-03 11:12:31 +0200 |
commit | dfc81188d50472dde2aa50752b415feab12350b4 (patch) | |
tree | 1147befa4679cb931985bb2ff997fab0a5d9ff72 /include/vcl/settings.hxx | |
parent | 0ea54aed15ee17a02c9dff861c16d06505f35741 (diff) |
tdf#92788 - Middle Button on Mouse Paste Option Broken for X11
caused by commit 5333782d090a9e147c0c431f0f741863d1d8cf8e
"convert SETTINGS_ #defines to 'enum class'"
Change-Id: Id0c2738a61f73223f6c8716f04a619c8cb84c0a9
Diffstat (limited to 'include/vcl/settings.hxx')
-rw-r--r-- | include/vcl/settings.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vcl/settings.hxx b/include/vcl/settings.hxx index 18cef47c9e5b..c7cb634a5d29 100644 --- a/include/vcl/settings.hxx +++ b/include/vcl/settings.hxx @@ -682,13 +682,14 @@ public: enum class AllSettingsFlags { NONE = 0x0000, + MOUSE = 0x0001, STYLE = 0x0002, MISC = 0x0004, LOCALE = 0x0020, }; namespace o3tl { - template<> struct typed_flags<AllSettingsFlags> : is_typed_flags<AllSettingsFlags, 0x026> {}; + template<> struct typed_flags<AllSettingsFlags> : is_typed_flags<AllSettingsFlags, 0x0027> {}; } class VCL_DLLPUBLIC AllSettings |