summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-03 16:10:14 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-04 11:38:21 +0000
commit16431492441e742fbbbfc73ba0b715a91ec3ee45 (patch)
treea0e09fc4f99670d021edf5c2fac08a0b25543210 /include
parent3ffa98027e6443d3822da8ba6d9602f3e36cef99 (diff)
remove unused Cachable keyword from SDI files
Change-Id: I60c423b799f34f79f58bc39cf7ea616ec4f5d16a Reviewed-on: https://gerrit.libreoffice.org/22096 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/msg.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/sfx2/msg.hxx b/include/sfx2/msg.hxx
index 30312b97f5b9..e3b3c4ddfd8a 100644
--- a/include/sfx2/msg.hxx
+++ b/include/sfx2/msg.hxx
@@ -28,9 +28,8 @@
#include <functional>
enum class SfxSlotMode {
- NONE = 0x0000L, // exclusiv to VOLATILE, default
- CACHABLE = 0x0001L, // exclusiv to VOLATILE, default
- VOLATILE = 0x0002L, // per Timer every 2s get new, exclusive to CACHABLE
+ NONE = 0x0000L, // default
+ VOLATILE = 0x0002L, // per Timer every 2s get new,
TOGGLE = 0x0004L, // inverted for Execute old value
AUTOUPDATE = 0x0008L, // invalidated the status automatically after execute
@@ -43,7 +42,7 @@ enum class SfxSlotMode {
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 = 0x00411L, // CACHABLE | SYNCHRON | RECORDPERSET;
+ STANDARD = 0x00410L, // SYNCHRON | RECORDPERSET;
PROPGET = 0x1000L, // get property
PROPSET = 0x2000L, // set property, exclusive to METHOD
@@ -64,7 +63,7 @@ enum class SfxSlotMode {
namespace o3tl
{
- template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbfL> {};
+ template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbeL> {};
}