[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - vcl/source

Marco Cecchetti marco.cecchetti at collabora.com
Thu Mar 17 08:01:21 UTC 2016


 vcl/source/outdev/polygon.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 778d0154755b4c2b35041a1a7ab58a48c9e0de13
Author: Marco Cecchetti <marco.cecchetti at collabora.com>
Date:   Tue Mar 8 10:03:06 2016 +0100

    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 at libreoffice.org>
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>

diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx
index 369551e..0165b0d 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;
         }
     }


More information about the Libreoffice-commits mailing list