diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 20:02:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 08:00:23 +0100 |
commit | 9ad04dad665f9bfc054d0db4174f18ce154e20fc (patch) | |
tree | b1bca8c8aa4fee1f2395194b4febf9c05f0bbecf /include | |
parent | 29df3d5b291e0857d337a311b6ae4054b0bdc026 (diff) |
remove unused SfxCallMode enum value
Change-Id: Ie092724ac22088d607f6250fbed764269b3707ba
Reviewed-on: https://gerrit.libreoffice.org/64571
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/bindings.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sfx2/bindings.hxx b/include/sfx2/bindings.hxx index 5d1e7b5e4089..38a41a25bcee 100644 --- a/include/sfx2/bindings.hxx +++ b/include/sfx2/bindings.hxx @@ -55,13 +55,12 @@ enum class SfxCallMode : sal_uInt16 SYNCHRON = 0x01, // synchronously in the same Stackframe ASYNCHRON = 0x02, // asynchronously via AppEvent RECORD = 0x04, // take into account while recording - API = 0x08, // API call (silent) - MODAL = 0x10 // despite ModalMode + API = 0x08 // API call (silent) }; namespace o3tl { -template<> struct typed_flags<SfxCallMode>: is_typed_flags<SfxCallMode, 0x1F> +template<> struct typed_flags<SfxCallMode>: is_typed_flags<SfxCallMode, 0x0F> {}; } |