summaryrefslogtreecommitdiff
path: root/include/vcl/sysdata.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-12-12 20:20:01 +0200
committerTor Lillqvist <tml@collabora.com>2013-12-12 20:20:17 +0200
commit38b7c4f1b78044a4b127499743d24a2369fb445a (patch)
tree0ec6124118ca8c0e620b0eaccd9d005d8b3aef24 /include/vcl/sysdata.hxx
parentc275a2edf663431f43106ba7da11b9d2b9503981 (diff)
Add CGContext field to SystemGraphicsData for iOS, too
Diffstat (limited to 'include/vcl/sysdata.hxx')
-rw-r--r--include/vcl/sysdata.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx
index cd1f26ea81ce..af65ce68df4a 100644
--- a/include/vcl/sysdata.hxx
+++ b/include/vcl/sysdata.hxx
@@ -121,7 +121,7 @@ struct SystemGraphicsData
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
- // Nothing
+ CGContextRef rCGContext; // CoreGraphics graphic context
#elif defined( UNX )
void* pDisplay; // the relevant display connection
long hDrawable; // a drawable
@@ -136,11 +136,11 @@ struct SystemGraphicsData
#if defined( WNT )
, hDC( 0 )
#elif defined( MACOSX )
- // Nothing
+ , rCGContext( NULL )
#elif defined( ANDROID )
// Nothing
#elif defined( IOS )
- // Nothing
+ , rCGContext( NULL )
#elif defined( UNX )
, pDisplay( NULL )
, hDrawable( 0 )