summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/vcl/bitmap.hxx1
-rw-r--r--vcl/win/gdi/salbmp.cxx1
2 files changed, 0 insertions, 2 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
diff --git a/vcl/win/gdi/salbmp.cxx b/vcl/win/gdi/salbmp.cxx
index 3fe763daa16f..87f88c88ce90 100644
--- a/vcl/win/gdi/salbmp.cxx
+++ b/vcl/win/gdi/salbmp.cxx
@@ -1035,7 +1035,6 @@ bool WinSalBitmap::GetSystemData( BitmapSystemData& rData )
{
bRet = true;
rData.pDIB = mhDIB;
- rData.pDDB = mhDDB;
const Size& rSize = GetSize ();
rData.mnWidth = rSize.Width();
rData.mnHeight = rSize.Height();