summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-04 08:32:59 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-04 13:06:03 +0000
commitccbed01b40c9bc4421943ebe1fe818d43aadcc7d (patch)
tree23f0e1eaee7523c171a10c80bd365f376a36ef89 /include
parent4f0398587f2854e41a8b544f5e2a00e3680122b6 (diff)
remove unused GET/SET/STATUSBARCONFIG in .SDI files
Change-Id: I74404d72e9146950a9881d2a59323c2bf08c9742 Reviewed-on: https://gerrit.libreoffice.org/22100 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/msg.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/sfx2/msg.hxx b/include/sfx2/msg.hxx
index 93f02c5eb6df..e804f50aa000 100644
--- a/include/sfx2/msg.hxx
+++ b/include/sfx2/msg.hxx
@@ -41,13 +41,10 @@ enum class SfxSlotMode {
RECORDABSOLUTE = 0x1000000L, // Recording with absolute Target
STANDARD = 0x00400L, // RECORDPERSET;
- PROPGET = 0x1000L, // get property
- PROPSET = 0x2000L, // set property, exclusive to METHOD
- METHOD = 0x4000L, // Method, exclusiv to PROPSET
+ METHOD = 0x4000L,
FASTCALL = 0x8000L, // No test if disabled before Execute
- STATUSBARCONFIG = 0x10000L, // configurable status row
MENUCONFIG = 0x20000L, // configurable Menu
TOOLBOXCONFIG = 0x40000L, // configurable Toolboxen
ACCELCONFIG = 0x80000L, // configurable keys
@@ -60,7 +57,7 @@ enum class SfxSlotMode {
namespace o3tl
{
- template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1fff72eL> {};
+ template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1fec72eL> {};
}