diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-23 15:03:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-26 08:48:55 +0100 |
commit | f4315955689ef0373c6ab3b4cc73b9130ea1531f (patch) | |
tree | 9f797cb5e9c4b7f582703c85345763c40d33b29a /include | |
parent | 84d9785a04a1d4929505ef1d7958e0420eec43b6 (diff) |
remove unused StartTrackingFlags enum values
Change-Id: Ib72e4d5e3e1c65bc4d44756f98392393c79dab0e
Reviewed-on: https://gerrit.libreoffice.org/63971
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/window.hxx | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 99a6d2b6b599..dc5def79c8a3 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -294,19 +294,15 @@ namespace o3tl // Flags for StartTracking() enum class StartTrackingFlags { - NONE = 0x0000, - KeyInput = 0x0001, + NONE = 0x0001, KeyMod = 0x0002, - NoKeyCancel = 0x0004, - ScrollRepeat = 0x0008, - ButtonRepeat = 0x0010, - MouseButtonDown = 0x0020, - FocusCancel = 0x0040, + ScrollRepeat = 0x0004, + ButtonRepeat = 0x0008, }; namespace o3tl { - template<> struct typed_flags<StartTrackingFlags> : is_typed_flags<StartTrackingFlags, 0x007f> {}; + template<> struct typed_flags<StartTrackingFlags> : is_typed_flags<StartTrackingFlags, 0x000f> {}; } // Flags for StartAutoScroll() |