diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-03 16:36:01 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-04 11:39:51 +0000 |
commit | 228a5704b3ca1addd7aa5de7a04865df4dc5b091 (patch) | |
tree | 2b40962339c6162ee8a8a61c7c5eb6ad41c82a26 /include/sfx2 | |
parent | 5ec98c76986c1fe004fe10b1a003618d74a2c5d3 (diff) |
remove unused HasDialog from SDI files
Change-Id: I26f2cef48fcc7a6c4a6b93668b836879254f3eb0
Reviewed-on: https://gerrit.libreoffice.org/22098
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sfx2')
-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 edb1cfff449a..0bb65fa2de20 100644 --- a/include/sfx2/msg.hxx +++ b/include/sfx2/msg.hxx @@ -34,7 +34,6 @@ enum class SfxSlotMode { TOGGLE = 0x0004L, // inverted for Execute old value AUTOUPDATE = 0x0008L, // invalidated the status automatically after execute ASYNCHRON = 0x0020L, // via Post-Message - HASDIALOG = 0x0080L, // Coordinates for dialogue after reconfig NORECORD = 0x0100L, // no recording RECORDPERITEM = 0x0200L, // each item, one statement @@ -62,7 +61,7 @@ enum class SfxSlotMode { namespace o3tl { - template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffffaeL> {}; + template<> struct typed_flags<SfxSlotMode> : is_typed_flags<SfxSlotMode, 0x1ffff2eL> {}; } |