diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-19 09:48:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-19 10:44:05 +0000 |
commit | 1658bd231bc662504a072097dc614c29fe2e116d (patch) | |
tree | 00e1036c841aa7c228d443c34cdc5e88b8054ea3 /include/sot | |
parent | 4f86b7a86cae630c19f6f0d1b4d6672c25e2eb3c (diff) |
loplugin:unusedenumvalues
Change-Id: I9dcc9f73af6db5b4f7cc946bc28931e5c230b34c
Reviewed-on: https://gerrit.libreoffice.org/29012
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/exchange.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/sot/exchange.hxx b/include/sot/exchange.hxx index 0f4346d4b85e..f28d47e58c7e 100644 --- a/include/sot/exchange.hxx +++ b/include/sot/exchange.hxx @@ -89,7 +89,6 @@ SOT_DLLPUBLIC bool IsFormatSupported( const DataFlavorExVector& rDataFlavorExVec enum class SotExchangeActionFlags { NONE = 0x0000, - CreateTheme = 0x0100, KeepPosSize = 0x0200, InsertImageMap = 0x0400, ReplaceImageMap = 0x0800, @@ -97,7 +96,7 @@ enum class SotExchangeActionFlags { InsertTargetUrl = 0x2000, }; namespace o3tl { - template<> struct typed_flags<SotExchangeActionFlags> : is_typed_flags<SotExchangeActionFlags, 0x3f00> {}; + template<> struct typed_flags<SotExchangeActionFlags> : is_typed_flags<SotExchangeActionFlags, 0x3e00> {}; } // destinations |