diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-23 14:54:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-26 07:26:54 +0100 |
commit | 84d9785a04a1d4929505ef1d7958e0420eec43b6 (patch) | |
tree | 6c95e3f234e1efe21d762d2bf2ba5b9e26a3aea4 /include/vcl/window.hxx | |
parent | 761546e088dcccf3aa66c3f5c4853f110b93770f (diff) |
remove unused DrawFlags enum values
Change-Id: I3f313dfa085612d805ea54352793a3fb0356b986
Reviewed-on: https://gerrit.libreoffice.org/63970
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/window.hxx')
-rw-r--r-- | include/vcl/window.hxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 6557c45434d1..99a6d2b6b599 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -370,16 +370,11 @@ enum class DrawFlags { NONE = 0x0000, Mono = 0x0001, - NoBorder = 0x0002, NoControls = 0x0004, - NoDisable = 0x0008, - NoMnemonic = 0x0010, - NoSelection = 0x0020, - NoBackground = 0x0040, }; namespace o3tl { - template<> struct typed_flags<DrawFlags> : is_typed_flags<DrawFlags, 0x007f> {}; + template<> struct typed_flags<DrawFlags> : is_typed_flags<DrawFlags, 0x0005> {}; } // DialogControl-Flags |