diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-07-14 11:02:21 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-07-14 23:58:01 +0300 |
commit | 5a7834cd3e6e73ec9c19f3ff057aacba59e3f9a3 (patch) | |
tree | c31868e985a0d17fbcc616575cb278cc8e4a88c6 /vcl/inc/vcl/bitmap.hxx | |
parent | d08bf1ca63e51c950ed0bc84b6f1d5232ae97f38 (diff) |
iOS hacking
Add some trivialish first attempts at iOS-specific headers and some
source files that surely are quite bogus and does nothing sane, but
must start with something. Mostly based on the MacOSX ("aqua") code.
Diffstat (limited to 'vcl/inc/vcl/bitmap.hxx')
-rw-r--r-- | vcl/inc/vcl/bitmap.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/vcl/bitmap.hxx b/vcl/inc/vcl/bitmap.hxx index e25bb482f53c..a6ff3129fada 100644 --- a/vcl/inc/vcl/bitmap.hxx +++ b/vcl/inc/vcl/bitmap.hxx @@ -234,7 +234,7 @@ struct BitmapSystemData #if defined( WNT ) void* pDIB; // device independent byte buffer void* pDDB; // if not NULL then this is actually an HBITMAP - #elif defined( QUARTZ ) + #elif defined( QUARTZ ) || defined( IOS ) void* rImageContext; //Image context (CGContextRef) #else void* aPixmap; |