summaryrefslogtreecommitdiff
path: root/vcl/quartz
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-11-15 16:46:24 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-11-15 19:29:54 +0100
commit72bc1fad399f78c48b186dee8759e12654cdf5d5 (patch)
treedd11834938445223a69c62986987b00be8228c37 /vcl/quartz
parent565bcfbdcbebc68c07eee9a30e0f82b0fdf7e846 (diff)
loplugin:fakebool and loplugin:consttobool (macOS)
Change-Id: I42d6546a9a400d8edb9ecef82614c6c88d4e6e83 Reviewed-on: https://gerrit.libreoffice.org/82806 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/quartz')
-rw-r--r--vcl/quartz/salgdicommon.cxx2
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];