summaryrefslogtreecommitdiff
path: root/include/sfx2/msg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-03 16:28:34 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-04 11:39:23 +0000
commit5ec98c76986c1fe004fe10b1a003618d74a2c5d3 (patch)
tree1262dc714be11f411ca423e194b7906addf3dedb /include/sfx2/msg.hxx
parent16431492441e742fbbbfc73ba0b715a91ec3ee45 (diff)
remove unused Synchron from SDI files
Change-Id: I0b8c63a97bfa4a49ac87869e164ab22d2aa99de3 Reviewed-on: https://gerrit.libreoffice.org/22097 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sfx2/msg.hxx')
-rw-r--r--include/sfx2/msg.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/sfx2/msg.hxx b/include/sfx2/msg.hxx
index e3b3c4ddfd8a..edb1cfff449a 100644
--- a/include/sfx2/msg.hxx
+++ b/include/sfx2/msg.hxx
@@ -33,8 +33,7 @@ enum class SfxSlotMode {
TOGGLE = 0x0004L, // inverted for Execute old value
AUTOUPDATE = 0x0008L, // invalidated the status automatically after execute
- SYNCHRON = 0x0010L, // exclusive to ASYNCHRON, default
- ASYNCHRON = 0x0020L, // via Post-Message, exclusive to SYNCHRON
+ ASYNCHRON = 0x0020L, // via Post-Message
HASDIALOG = 0x0080L, // Coordinates for dialogue after reconfig
NORECORD = 0x0100L, // no recording
@@ -42,7 +41,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 = 0x00410L, // SYNCHRON | RECORDPERSET;
+ STANDARD = 0x00400L, // RECORDPERSET;
PROPGET = 0x1000L, // get property
PROPSET = 0x2000L, // set property, exclusive to METHOD
@@ -63,7 +62,7 @@ enum class SfxSlotMode {
namespace o3tl
{
- template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffbeL> {};
+ template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffaeL> {};
}