diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-02 10:33:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-02 10:50:13 +0000 |
commit | c985cda80b54a4c951974bef77398b83eccc7d62 (patch) | |
tree | 3fbc597f0357cafa7694df9a765f08e3cfffd4e4 /include/vcl/dibtools.hxx | |
parent | 82070481f34091718ee0ca0dd97826c7e3d7d79e (diff) |
COMPRESS_OWN define is not used standalone anywhere
Change-Id: Iaca54d62a48711a7763cac98c6f303b952b2da29
Diffstat (limited to 'include/vcl/dibtools.hxx')
-rw-r--r-- | include/vcl/dibtools.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/dibtools.hxx b/include/vcl/dibtools.hxx index 757fb0d450d0..765cdc9e2dec 100644 --- a/include/vcl/dibtools.hxx +++ b/include/vcl/dibtools.hxx @@ -33,12 +33,11 @@ class Bitmap; // - Compression defines -#define COMPRESS_OWN ('S'|('D'<<8UL)) #define COMPRESS_NONE ( 0UL ) #define RLE_8 ( 1UL ) #define RLE_4 ( 2UL ) #define BITFIELDS ( 3UL ) -#define ZCOMPRESS ( COMPRESS_OWN | 0x01000000UL ) /* == 'SD01' (binary) */ +#define ZCOMPRESS ( ('S'|('D'<<8UL)) | 0x01000000UL ) /* == 'SD01' (binary) */ bool VCL_DLLPUBLIC ReadDIB( // ReadDIB(rBitmap, rIStm, true); Bitmap& rTarget, |