summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-26 13:45:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-27 14:41:41 +0100
commitb6449c65daa2854b8241e14c0966721412f16515 (patch)
tree62ee8134dca3ec5884c3008c263806a6deca71ab /include/editeng
parent7290ce233de89319549cf47899905170a65593c7 (diff)
remove unused EEControlBits enum value
Change-Id: Ic363903bb6e32c029f5aac6810f69d590df1bf79 Reviewed-on: https://gerrit.libreoffice.org/64091 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/editstat.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/editeng/editstat.hxx b/include/editeng/editstat.hxx
index 7a64e817b194..f6894923c2e5 100644
--- a/include/editeng/editstat.hxx
+++ b/include/editeng/editstat.hxx
@@ -29,7 +29,6 @@ enum class EEControlBits
{
NONE = 0x00000000,
USECHARATTRIBS = 0x00000001, // Use of hard character attributes
- CRSRLEFTPARA = 0x00000004, // Cursor is moved to another paragraph
DOIDLEFORMAT = 0x00000008, // Formatting idle
PASTESPECIAL = 0x00000010, // Allow PasteSpecial
AUTOINDENTING = 0x00000020, // Automatic indenting
@@ -55,7 +54,7 @@ enum class EEControlBits
};
namespace o3tl
{
- template<> struct typed_flags<EEControlBits> : is_typed_flags<EEControlBits, 0x037efffd> {};
+ template<> struct typed_flags<EEControlBits> : is_typed_flags<EEControlBits, 0x037efff9> {};
}
enum class EVControlBits