diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-03-20 14:38:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-20 14:38:57 +0100 |
commit | 334212593313199bc4549efdca849964c313b037 (patch) | |
tree | fd45f52d7af4884203fd77dff1c1efcb10500fc7 /vcl | |
parent | b19c601bc4e4700b9d193a86795424e847759b4b (diff) |
-Werror,-Wundef
Change-Id: I197fcafa3d39e5ec312d7e0c56b076a479391a73
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/aqua/source/gdi/salgdicommon.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/aqua/source/gdi/salgdicommon.cxx b/vcl/aqua/source/gdi/salgdicommon.cxx index 214a6ab4d71d..57dff4564ec1 100644 --- a/vcl/aqua/source/gdi/salgdicommon.cxx +++ b/vcl/aqua/source/gdi/salgdicommon.cxx @@ -1130,7 +1130,7 @@ SalColor AquaSalGraphics::getPixel( long nX, long nY ) // prepare creation of matching a CGBitmapContext CGColorSpaceRef aCGColorSpace = GetSalData()->mxRGBSpace; CGBitmapInfo aCGBmpInfo = kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Big; -#if __BIG_ENDIAN__ +#if defined __BIG_ENDIAN__ struct{ unsigned char b, g, r, a; } aPixel; #else struct{ unsigned char a, r, g, b; } aPixel; |