summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-03-02 10:33:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-03-02 10:50:13 +0000
commitc985cda80b54a4c951974bef77398b83eccc7d62 (patch)
tree3fbc597f0357cafa7694df9a765f08e3cfffd4e4 /include
parentreject bmps with unknown compression schemes (diff)
downloadcore-c985cda80b54a4c951974bef77398b83eccc7d62.tar.gz
core-c985cda80b54a4c951974bef77398b83eccc7d62.zip
COMPRESS_OWN define is not used standalone anywhere
Change-Id: Iaca54d62a48711a7763cac98c6f303b952b2da29
Diffstat (limited to 'include')
-rw-r--r--include/vcl/dibtools.hxx3
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,