diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 15:42:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 08:00:11 +0100 |
commit | 29df3d5b291e0857d337a311b6ae4054b0bdc026 (patch) | |
tree | fafb64c1786877a007400ed878cf690e30401740 /include/sot | |
parent | 0e17223e9f86dd066d8ce3b835637e05859b7837 (diff) |
remove unused SotExchangeActionFlags enum values
Change-Id: Iba1e8f24d3ea8f2dbdab0e48b04c7ae57c9c6c8f
Reviewed-on: https://gerrit.libreoffice.org/64570
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/exchange.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/sot/exchange.hxx b/include/sot/exchange.hxx index 15279ebab582..f76cec123b5c 100644 --- a/include/sot/exchange.hxx +++ b/include/sot/exchange.hxx @@ -75,14 +75,12 @@ SOT_DLLPUBLIC bool IsFormatSupported( const DataFlavorExVector& rDataFlavorExVec enum class SotExchangeActionFlags { NONE = 0x0000, - KeepPosSize = 0x0200, InsertImageMap = 0x0400, ReplaceImageMap = 0x0800, - Fill = 0x1000, InsertTargetUrl = 0x2000, }; namespace o3tl { - template<> struct typed_flags<SotExchangeActionFlags> : is_typed_flags<SotExchangeActionFlags, 0x3e00> {}; + template<> struct typed_flags<SotExchangeActionFlags> : is_typed_flags<SotExchangeActionFlags, 0x2c00> {}; } // destinations |