diff options
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/salgdicommon.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 19f74464622b..c7cc31a5555f 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -743,7 +743,7 @@ bool AquaSalGraphics::drawEPS( long nX, long nY, long nWidth, long nHeight, // draw the EPS const NSRect aDstRect = NSMakeRect( nX, nY, nWidth, nHeight); - const BOOL bOK = [xEpsImage drawInRect: aDstRect]; + const bool bOK = [xEpsImage drawInRect: aDstRect]; // restore the NSGraphicsContext [NSGraphicsContext setCurrentContext: pOrigNSCtx]; |