diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 09:16:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 07:51:32 +0100 |
commit | 6ba25b96e6187931c0651f099413dbf1e2a7ab97 (patch) | |
tree | 765b99bf2cff746295968899958db0f145cb8e71 /include/vcl | |
parent | df55a6ca81848a5a095f08ae5265186d38176d40 (diff) |
remove unused InvertFlags::Highlight
Change-Id: Id881142f39a6160b8040d0446476767aad83f260
Reviewed-on: https://gerrit.libreoffice.org/64558
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/outdev.hxx | 7 | ||||
-rw-r--r-- | include/vcl/salgtype.hxx | 7 |
2 files changed, 6 insertions, 8 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 0d6b80eb6bc2..1d4a936e22a6 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -267,13 +267,12 @@ namespace o3tl enum class InvertFlags { NONE = 0x0000, - Highlight = 0x0001, - N50 = 0x0002, - TrackFrame = 0x0004 + N50 = 0x0001, + TrackFrame = 0x0002 }; namespace o3tl { - template<> struct typed_flags<InvertFlags> : is_typed_flags<InvertFlags, 0x0007> {}; + template<> struct typed_flags<InvertFlags> : is_typed_flags<InvertFlags, 0x0003> {}; } enum OutDevType { OUTDEV_WINDOW, OUTDEV_PRINTER, OUTDEV_VIRDEV, OUTDEV_PDF }; diff --git a/include/vcl/salgtype.hxx b/include/vcl/salgtype.hxx index d920ede00dac..a373a0a62d07 100644 --- a/include/vcl/salgtype.hxx +++ b/include/vcl/salgtype.hxx @@ -84,13 +84,12 @@ enum class SalROPColor { enum class SalInvert { NONE = 0x00, - Highlight = 0x01, - N50 = 0x02, - TrackFrame = 0x04 + N50 = 0x01, + TrackFrame = 0x02 }; namespace o3tl { - template<> struct typed_flags<SalInvert> : is_typed_flags<SalInvert, 0x07> {}; + template<> struct typed_flags<SalInvert> : is_typed_flags<SalInvert, 0x03> {}; } #endif // INCLUDED_VCL_SALGTYPE_HXX |