diff options
author | Andras Timar <andras.timar@collabora.com> | 2020-01-20 15:46:24 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2020-01-20 17:16:41 +0100 |
commit | 971c4135b3a11cd74a13ac0eb4e3aaae4e7dfefd (patch) | |
tree | a073a025ed7ebf7dc3b408d28418914838514bfe /emfio | |
parent | d6628ddaf6e2acf53c5a7cbbcb201d700cd95f54 (diff) |
fix constants according to [MS-EMF] 2.1.10
Change-Id: I048eb097e9570f2ad2fecef5e725c98e36e6559e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87078
Tested-by: Jenkins
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/source/reader/emfreader.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emfio/source/reader/emfreader.cxx b/emfio/source/reader/emfreader.cxx index 24600e58c360..e29ec1b39132 100644 --- a/emfio/source/reader/emfreader.cxx +++ b/emfio/source/reader/emfreader.cxx @@ -384,8 +384,8 @@ namespace emfio #if OSL_DEBUG_LEVEL > 0 const sal_uInt32 EMR_COMMENT_BEGINGROUP = 0x00000002; const sal_uInt32 EMR_COMMENT_ENDGROUP = 0x00000003; - const sal_uInt32 EMR_COMMENT_MULTIFORMATS = 0x00000004; - const sal_uInt32 EMR_COMMENT_WINDOWS_METAFILE = 0x00000005; + const sal_uInt32 EMR_COMMENT_MULTIFORMATS = 0x40000004; + const sal_uInt32 EMR_COMMENT_WINDOWS_METAFILE = 0x80000001; void EmfReader::ReadGDIComment(sal_uInt32 nCommentId) { |