summaryrefslogtreecommitdiff
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 20:23:13 +0000
commit6651aca57bae1bef3343f26d1a0fd59d3802c1cd (patch)
tree4b17467c4e893f28ba48ea6b1c9e03ec27bb471a
parent0947c9be4d09999a9bd3842fbd66690572c40eee (diff)
tdf#98052 - even polygons were not drawn on the alpha device
Change-Id: I5725ec23869b295c8021bef0330ee6f69f206351 Reviewed-on: https://gerrit.libreoffice.org/23024 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
-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 129f6de75a48..1ca1d87b706b 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;
}
}