diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-03 16:58:01 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-04 11:54:36 +0000 |
commit | 44e48e309ab92443f11b290a2153779703bca22f (patch) | |
tree | 32a34b412e23183b1f01549a1740d0f20f835480 /include | |
parent | 228a5704b3ca1addd7aa5de7a04865df4dc5b091 (diff) |
remove unused RecordManual from SDI files
Change-Id: Ia6af0d00b68f5694c9fc9cc453fe36fb923f0a2d
Reviewed-on: https://gerrit.libreoffice.org/22099
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/msg.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/sfx2/msg.hxx b/include/sfx2/msg.hxx index 0bb65fa2de20..93f02c5eb6df 100644 --- a/include/sfx2/msg.hxx +++ b/include/sfx2/msg.hxx @@ -38,7 +38,6 @@ enum class SfxSlotMode { NORECORD = 0x0100L, // no recording RECORDPERITEM = 0x0200L, // each item, one statement RECORDPERSET = 0x0400L, // The whole Set is a Statement, default - RECORDMANUAL = 0x0800L, // Recording by the application developer is default RECORDABSOLUTE = 0x1000000L, // Recording with absolute Target STANDARD = 0x00400L, // RECORDPERSET; @@ -61,7 +60,7 @@ enum class SfxSlotMode { namespace o3tl { - template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffff2eL> {}; + template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1fff72eL> {}; } |