diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-03 21:23:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 07:13:52 +0100 |
commit | 057d3afa9616136040f9daaba4b54bb1ecb314b5 (patch) | |
tree | 69ec3f808611b7589cde4d4af401caa7fa21bb39 /include/vcl | |
parent | 0d4f5bc196d29c6d79acb916f459a0baf758b71d (diff) |
remove unnecessary GraphicFilterImportFlags::AllowPartialStreamRead
Change-Id: I43036745b50e99dc47bb9b63f78e8f3c6eea2c89
Reviewed-on: https://gerrit.libreoffice.org/64486
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/graphicfilter.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx index 8152dbc972b1..0ce9f50ba0c4 100644 --- a/include/vcl/graphicfilter.hxx +++ b/include/vcl/graphicfilter.hxx @@ -56,7 +56,6 @@ enum class GraphicFilterImportFlags SetLogsizeForJpeg = 0x001, DontSetLogsizeForJpeg = 0x002, ForPreview = 0x004, - AllowPartialStreamRead = 0x010, /// Only create a bitmap, do not read pixel data. OnlyCreateBitmap = 0x020, /// Read pixel data into an existing bitmap. @@ -64,7 +63,7 @@ enum class GraphicFilterImportFlags }; namespace o3tl { - template<> struct typed_flags<GraphicFilterImportFlags> : is_typed_flags<GraphicFilterImportFlags, 0x0077> {}; + template<> struct typed_flags<GraphicFilterImportFlags> : is_typed_flags<GraphicFilterImportFlags, 0x0067> {}; } #define IMP_BMP "SVBMP" |