summaryrefslogtreecommitdiff
path: root/include/vcl/sysdata.hxx
diff options
context:
space:
mode:
authorLászló Németh <laszlo.nemeth@collabora.com>2015-04-27 16:22:11 +0200
committerLászló Németh <laszlo.nemeth@collabora.com>2015-05-07 17:47:23 +0200
commita1bfad005cfb0b54744746da20a81f9bb8908ae0 (patch)
tree25004ee69d95a5a1e31c060c8b8625ac91503315 /include/vcl/sysdata.hxx
parent96a6128b9259e62ae0b2872a3157bb1bb32d2a6d (diff)
XTiledRenderable: use HWND instead of HDC
Cherry-picked from e1fb63bb8ed7a9bd4dbe19be0d0da7245c4a2fb2 Change-Id: I2959ea8b1213d6dade1c2567365f177bf542e075
Diffstat (limited to 'include/vcl/sysdata.hxx')
-rw-r--r--include/vcl/sysdata.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx
index a4fad69ae414..a525f77fbbc8 100644
--- a/include/vcl/sysdata.hxx
+++ b/include/vcl/sysdata.hxx
@@ -137,6 +137,7 @@ struct SystemGraphicsData
unsigned long nSize; // size in bytes of this structure
#if defined( WNT )
HDC hDC; // handle to a device context
+ HWND hWnd; // optional handle to a window
#elif defined( MACOSX )
CGContextRef rCGContext; // CoreGraphics graphic context
#elif defined( ANDROID )
@@ -156,6 +157,7 @@ struct SystemGraphicsData
: nSize( sizeof( SystemGraphicsData ) )
#if defined( WNT )
, hDC( 0 )
+ , hWnd( 0 )
#elif defined( MACOSX )
, rCGContext( NULL )
#elif defined( ANDROID )