[Libreoffice-commits] core.git: canvas/source

Noel Grandin noel at peralex.com
Tue Sep 30 02:59:38 PDT 2014


 canvas/source/directx/dx_textlayout_drawhelper.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit cf86b3435bb9c4068ab4de6068a4b4ac99025619
Author: Noel Grandin <noel at peralex.com>
Date:   Tue Sep 30 11:58:03 2014 +0200

    fix windows build
    
    after commit c9d4a2887c13a5df244022276dd79a5bef8af0ea
    "fdo#82577: Handle PolyPolygon"
    
    Change-Id: Iac00779e4f8d94bc93a4112f7ad6abf3db14fad5

diff --git a/canvas/source/directx/dx_textlayout_drawhelper.cxx b/canvas/source/directx/dx_textlayout_drawhelper.cxx
index 0a61a84..ec20731 100644
--- a/canvas/source/directx/dx_textlayout_drawhelper.cxx
+++ b/canvas/source/directx/dx_textlayout_drawhelper.cxx
@@ -171,7 +171,7 @@ namespace dxcanvas
                 }
 
                 aClipPoly.transform(aMatrix);
-                const vcl::Region& rClipRegion = vcl::Region(tools::PolyPolygon(aClipPoly));
+                const vcl::Region& rClipRegion = vcl::Region(::tools::PolyPolygon(aClipPoly));
                 aVirtualDevice.IntersectClipRegion(rClipRegion);
             }
 
@@ -179,7 +179,7 @@ namespace dxcanvas
             {
                 ::basegfx::B2DPolyPolygon aClipPoly(dxcanvas::tools::polyPolygonFromXPolyPolygon2D(rRenderState.Clip));
                 aClipPoly.transform(aWorldTransform);
-                const vcl::Region& rClipRegion = vcl::Region(tools::PolyPolygon(aClipPoly));
+                const vcl::Region& rClipRegion = vcl::Region(::tools::PolyPolygon(aClipPoly));
                 aVirtualDevice.IntersectClipRegion(rClipRegion);
             }
 


More information about the Libreoffice-commits mailing list