diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-12-12 20:20:01 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-12-12 20:20:17 +0200 |
commit | 38b7c4f1b78044a4b127499743d24a2369fb445a (patch) | |
tree | 0ec6124118ca8c0e620b0eaccd9d005d8b3aef24 /include | |
parent | c275a2edf663431f43106ba7da11b9d2b9503981 (diff) |
Add CGContext field to SystemGraphicsData for iOS, too
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/sysdata.hxx | 6 |
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 ) |