diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 13:08:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-21 13:08:35 +0100 |
commit | d6dfeb95885a03e6f255c0be75b2dfa9258c61cc (patch) | |
tree | 7c5946a3bb2f0c483972d3f43b8d782d10c2fbfb /vcl/quartz | |
parent | 32ada80a9f47b095d7b0c4d16e3422f6ef7f2ac2 (diff) |
Mac OS X vcl: sal_Bool -> bool fixup
Change-Id: I77a2e7957351ca6da44948e5a28d08116e1cd14d
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/salgdicommon.cxx | 10 | ||||
-rw-r--r-- | vcl/quartz/salvd.cxx | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index dec87ffad206..b1c81212fa63 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -143,7 +143,7 @@ static void AddPolyPolygonToPath( CGMutablePathRef xPath, } } -sal_Bool AquaSalGraphics::CreateFontSubset( const OUString& rToFile, +bool AquaSalGraphics::CreateFontSubset( const OUString& rToFile, const PhysicalFontFace* pFontData, sal_GlyphId* pGlyphIds, sal_uInt8* pEncoding, sal_Int32* pGlyphWidths, int nGlyphCount, @@ -666,7 +666,7 @@ void AquaSalGraphics::drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rS #ifndef IOS -sal_Bool AquaSalGraphics::drawEPS( long nX, long nY, long nWidth, long nHeight, +bool AquaSalGraphics::drawEPS( long nX, long nY, long nWidth, long nHeight, void* pEpsData, sal_uLong nByteCount ) { // convert the raw data to an NSImageRef @@ -857,7 +857,7 @@ bool AquaSalGraphics::drawPolyLine( return true; } -sal_Bool AquaSalGraphics::drawPolyLineBezier( sal_uInt32, const SalPoint*, const sal_uInt8* ) +bool AquaSalGraphics::drawPolyLineBezier( sal_uInt32, const SalPoint*, const sal_uInt8* ) { return sal_False; } @@ -1082,12 +1082,12 @@ void AquaSalGraphics::drawPolygon( sal_uInt32 nPoints, const SalPoint *pPtAry ) RefreshRect( nX, nY, nWidth, nHeight ); } -sal_Bool AquaSalGraphics::drawPolygonBezier( sal_uInt32, const SalPoint*, const sal_uInt8* ) +bool AquaSalGraphics::drawPolygonBezier( sal_uInt32, const SalPoint*, const sal_uInt8* ) { return sal_False; } -sal_Bool AquaSalGraphics::drawPolyPolygonBezier( sal_uInt32, const sal_uInt32*, +bool AquaSalGraphics::drawPolyPolygonBezier( sal_uInt32, const sal_uInt32*, const SalPoint* const*, const sal_uInt8* const* ) { return sal_False; diff --git a/vcl/quartz/salvd.cxx b/vcl/quartz/salvd.cxx index ccafc04544b9..0c61499728dc 100644 --- a/vcl/quartz/salvd.cxx +++ b/vcl/quartz/salvd.cxx @@ -173,7 +173,7 @@ void AquaSalVirtualDevice::ReleaseGraphics( SalGraphics* ) // ----------------------------------------------------------------------- -sal_Bool AquaSalVirtualDevice::SetSize( long nDX, long nDY ) +bool AquaSalVirtualDevice::SetSize( long nDX, long nDY ) { #ifdef IOS (void) nDX; |