summaryrefslogtreecommitdiff
path: root/canvas
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-30 11:58:03 +0200
committerNoel Grandin <noel@peralex.com>2014-09-30 11:58:03 +0200
commitcf86b3435bb9c4068ab4de6068a4b4ac99025619 (patch)
tree7bf54c628742a686f3ac38759e92a98efd13a586 /canvas
parentc9d4a2887c13a5df244022276dd79a5bef8af0ea (diff)
fix windows build
after commit c9d4a2887c13a5df244022276dd79a5bef8af0ea "fdo#82577: Handle PolyPolygon" Change-Id: Iac00779e4f8d94bc93a4112f7ad6abf3db14fad5
Diffstat (limited to 'canvas')
-rw-r--r--canvas/source/directx/dx_textlayout_drawhelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/directx/dx_textlayout_drawhelper.cxx b/canvas/source/directx/dx_textlayout_drawhelper.cxx
index 0a61a8422812..ec20731c2892 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);
}