diff options
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/mtfrenderer/implrenderer.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cppcanvas/source/mtfrenderer/implrenderer.cxx b/cppcanvas/source/mtfrenderer/implrenderer.cxx index 15f4ce83ac77..8d2b32ddc0f3 100644 --- a/cppcanvas/source/mtfrenderer/implrenderer.cxx +++ b/cppcanvas/source/mtfrenderer/implrenderer.cxx @@ -1051,7 +1051,6 @@ namespace cppcanvas bool bIntersect ) { ::cppcanvas::internal::OutDevState& rState( rParms.mrStates.getState() ); - ::basegfx::B2DPolyPolygon aClipPoly( rClipPoly ); const bool bEmptyClipRect( rState.clipRect.IsEmpty() ); const bool bEmptyClipPoly( rState.clip.count() == 0 ); @@ -1086,7 +1085,7 @@ namespace cppcanvas // AW: Simplified rState.clip = basegfx::tools::clipPolyPolygonOnPolyPolygon( - aClipPoly, rState.clip, true, false); + rClipPoly, rState.clip, true, false); } // by now, our clip resides in the OutDevState::clip |