summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2016-03-08 10:03:06 +0100
committerAndras Timar <andras.timar@collabora.com>2016-03-17 14:26:04 +0100
commitb54f7ef7e2c61f733f396767a247afbe52ccb8a9 (patch)
tree2e19eb0045d185dd40bef572035ff5f864136942
parent17f1886a9456bbbe689b4be793de2841b7ce835d (diff)
tdf#98052 - even polygons were not drawn on the alpha device
Change-Id: I5725ec23869b295c8021bef0330ee6f69f206351 Reviewed-on: https://gerrit.libreoffice.org/23025 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> (cherry picked from commit 778d0154755b4c2b35041a1a7ab58a48c9e0de13)
-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 369551ef7b41..0165b0da1d16 100644
--- a/vcl/source/outdev/polygon.cxx
+++ b/vcl/source/outdev/polygon.cxx
@@ -212,6 +212,8 @@ void OutputDevice::DrawPolygon( const Polygon& rPoly )
if(bSuccess)
{
+ if( mpAlphaVDev )
+ mpAlphaVDev->DrawPolygon( rPoly );
return;
}
}