diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 12:02:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-07 07:39:13 +0100 |
commit | 504ae08d8ca7755106926326e8cde8ed015bd2ee (patch) | |
tree | 2cb2e41f5377eb9ae1e847491c73d44b988e67c9 /include/editeng | |
parent | 3aa02154941bd04c1646948bcfbec20c2873e189 (diff) |
remove unused EditStatusFlags enum value
Change-Id: I859a0ebba11aaa9edbe14863c06703585defa66c
Reviewed-on: https://gerrit.libreoffice.org/64716
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/editstat.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/editeng/editstat.hxx b/include/editeng/editstat.hxx index 5c8c9873b08a..d7c8c441cf29 100644 --- a/include/editeng/editstat.hxx +++ b/include/editeng/editstat.hxx @@ -79,14 +79,13 @@ enum class EditStatusFlags HSCROLL = 0x0001, VSCROLL = 0x0002, CURSOROUT = 0x0004, - CRSRMOVEFAIL = 0x0008, TEXTWIDTHCHANGED = 0x0010, TextHeightChanged = 0x0020, WRONGWORDCHANGED = 0x0040 }; namespace o3tl { - template<> struct typed_flags<EditStatusFlags> : is_typed_flags<EditStatusFlags, 0x7f> {}; + template<> struct typed_flags<EditStatusFlags> : is_typed_flags<EditStatusFlags, 0x77> {}; } inline void SetFlags( EVControlBits& rBits, EVControlBits nMask, bool bOn ) |