summaryrefslogtreecommitdiff
path: root/include/vcl/bitmap.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-12-26 16:39:28 +0200
committerTor Lillqvist <tml@collabora.com>2018-12-26 16:40:56 +0200
commit71ab9a658bf3ac8fd2486833dc2372b238acf98b (patch)
tree763aba7ef98213f32845665ef981294d52f29475 /include/vcl/bitmap.hxx
parentce8abb1a25e838b5c804cd628a0378c27c0b1602 (diff)
The Windows-specific BitmapSystemData::pDDB is unused
Its comment, "if not NULL then this is actually an HBITMAP", makes me wonder whether we lost some functionality, or broke something, or pessimized code, when the field became unused, whenever that was... Change-Id: I8bc95a1c5aca3ed80448c7c03ae0b1bb586bf5ae
Diffstat (limited to 'include/vcl/bitmap.hxx')
-rw-r--r--include/vcl/bitmap.hxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index c1a353f643c8..b66d4efb122b 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -92,7 +92,6 @@ struct BitmapSystemData
{
#if defined(_WIN32)
void* pDIB; // device independent byte buffer
- void* pDDB; // if not NULL then this is actually an HBITMAP
#elif defined( MACOSX ) || defined( IOS )
void* rImageContext; //Image context (CGContextRef)
#else