diff options
author | Matteo Casalin <matteo.casalin@libreoffice.org> | 2020-03-04 18:08:26 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@libreoffice.org> | 2020-03-07 22:31:00 +0100 |
commit | 6155e69aba4769cac01454bc43270ae3069ef48e (patch) | |
tree | 86e831ab325b6ee4825f5d79d26f9246c322da83 | |
parent | b7d10989d6d7bdbd156288a3773e2da94c97a77e (diff) |
Fix typed flags mask
after commit 2876a0f79f94cdd139cc8fa40669acde9674bf8c
Change-Id: Ibf27d74d73b0e8624efaffdc252b27e366245e38
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90165
Tested-by: Jenkins
Reviewed-by: Matteo Casalin <matteo.casalin@libreoffice.org>
-rw-r--r-- | include/vcl/graphicfilter.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx index 8a59d2461a2a..20b8abc935de 100644 --- a/include/vcl/graphicfilter.hxx +++ b/include/vcl/graphicfilter.hxx @@ -62,7 +62,7 @@ enum class GraphicFilterImportFlags }; namespace o3tl { - template<> struct typed_flags<GraphicFilterImportFlags> : is_typed_flags<GraphicFilterImportFlags, 0x0067> {}; + template<> struct typed_flags<GraphicFilterImportFlags> : is_typed_flags<GraphicFilterImportFlags, 0x0063> {}; } #define IMP_BMP "SVBMP" |