[Libreoffice-commits] core.git: vcl/source
tsahi glik
tsahi.glik at cloudon.com
Sat Feb 15 01:58:15 CET 2014
vcl/source/gdi/outdev6.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit ecf22894f522374cbdb8196d3bdef88e2fba7af9
Author: tsahi glik <tsahi.glik at cloudon.com>
Date: Fri Feb 14 16:57:45 2014 -0800
fix another crash on ios
diff --git a/vcl/source/gdi/outdev6.cxx b/vcl/source/gdi/outdev6.cxx
index bd8f10e..e55e125 100644
--- a/vcl/source/gdi/outdev6.cxx
+++ b/vcl/source/gdi/outdev6.cxx
@@ -467,7 +467,11 @@ void OutputDevice::DrawTransparent( const PolyPolygon& rPolyPoly,
if( !bDrawn )
{
+#ifdef IOS
+ VirtualDevice aVDev( *this, 8 );
+#else
VirtualDevice aVDev( *this, 1 );
+#endif
const Size aDstSz( aDstRect.GetSize() );
const sal_uInt8 cTrans = (sal_uInt8) MinMax( FRound( nTransparencePercent * 2.55 ), 0, 255 );
More information about the Libreoffice-commits
mailing list