summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/tree
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-08-21 10:21:31 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-08-21 10:21:31 +0000
commit4bfed01fa1b3d70ca6d6dc194827ac6dcf1e9e1a (patch)
tree43f23c4cd6d557429b8f99c01be8b1133a9c284c /sdext/source/pdfimport/tree
parent097431d5d20f3503492d439dbf3c4ebc94a7d788 (diff)
#i100000# educated guess...
Diffstat (limited to 'sdext/source/pdfimport/tree')
-rw-r--r--sdext/source/pdfimport/tree/pdfiprocessor.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/pdfimport/tree/pdfiprocessor.cxx b/sdext/source/pdfimport/tree/pdfiprocessor.cxx
index 16a1d9c87492..5f3c6195dd4a 100644
--- a/sdext/source/pdfimport/tree/pdfiprocessor.cxx
+++ b/sdext/source/pdfimport/tree/pdfiprocessor.cxx
@@ -8,7 +8,7 @@
*
* $RCSfile: pdfiprocessor.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
* This file is part of OpenOffice.org.
*
@@ -668,7 +668,7 @@ void PDFIProcessor::intersectClip(const uno::Reference< rendering::XPolyPolygon2
basegfx::B2DPolyPolygon aCurClip = getCurrentContext().Clip;
if( aCurClip.count() )
- aNewClip = basegfx::tools::clipPolyPolygonOnPolyPolygon( aCurClip, aNewClip, false );
+ aNewClip = basegfx::tools::clipPolyPolygonOnPolyPolygon( aCurClip, aNewClip, false, false );
getCurrentContext().Clip = aNewClip;
}
@@ -681,7 +681,7 @@ void PDFIProcessor::intersectEoClip(const uno::Reference< rendering::XPolyPolygo
basegfx::B2DPolyPolygon aCurClip = getCurrentContext().Clip;
if( aCurClip.count() )
- aNewClip = basegfx::tools::clipPolyPolygonOnPolyPolygon( aCurClip, aNewClip, false );
+ aNewClip = basegfx::tools::clipPolyPolygonOnPolyPolygon( aCurClip, aNewClip, false, false );
getCurrentContext().Clip = aNewClip;
}