summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2016-03-08 10:03:06 +0100
committerMichael Meeks <michael.meeks@collabora.com>2016-03-08 17:02:39 +0000
commit55ec8dd8af96756b00d5a617dc5a58abe73118d6 (patch)
treeafd76500126ef343bcf7aa757180f55e03ce16a0 /vcl
parent83dd8050ebbbddbd5573b76e3f848df1f411ee1f (diff)
tdf#98052 - even polygons were not drawn on the alpha device
Change-Id: I5725ec23869b295c8021bef0330ee6f69f206351 Reviewed-on: https://gerrit.libreoffice.org/23026 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/outdev/polygon.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx
index bcd7bac86b14..2ad4e9575ae3 100644
--- a/vcl/source/outdev/polygon.cxx
+++ b/vcl/source/outdev/polygon.cxx
@@ -212,6 +212,8 @@ void OutputDevice::DrawPolygon( const tools::Polygon& rPoly )
if(bSuccess)
{
+ if( mpAlphaVDev )
+ mpAlphaVDev->DrawPolygon( rPoly );
return;
}
}