summaryrefslogtreecommitdiff
path: root/sw/inc/modcfg.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-12 12:08:50 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-17 06:43:45 +0000
commit95be297746fda812f5a64e5fd53c753dfd9b249c (patch)
tree4765cbcc1c825480d58d236f2011b895e06101d5 /sw/inc/modcfg.hxx
parente0a3269183bf145511361a3968dca07824923dd4 (diff)
loplugin:unusedenumvalues in sw
Change-Id: Ia5faa65cd7824183cead2634edab96b5d23a6c02 Reviewed-on: https://gerrit.libreoffice.org/28072 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/inc/modcfg.hxx')
-rw-r--r--sw/inc/modcfg.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/sw/inc/modcfg.hxx b/sw/inc/modcfg.hxx
index 8cec996dab2c..73f2a43f7594 100644
--- a/sw/inc/modcfg.hxx
+++ b/sw/inc/modcfg.hxx
@@ -41,14 +41,13 @@ class InsCaptionOpt;
enum class MailTextFormats
{
NONE = 0x00,
- ASCII = 0x01,
- HTML = 0x02,
- RTF = 0x04,
- OFFICE = 0x08
+ HTML = 0x01,
+ RTF = 0x02,
+ OFFICE = 0x04
};
namespace o3tl
{
- template<> struct typed_flags<MailTextFormats> : is_typed_flags<MailTextFormats, 0x0f> {};
+ template<> struct typed_flags<MailTextFormats> : is_typed_flags<MailTextFormats, 0x07> {};
}