summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-18 09:58:28 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-18 09:58:28 +0000
commitcd4912e9049bf7190352f2c6780a5111c86cf5cc (patch)
tree5ad406cde2baee6b4f9d3d791909c48fcbff6845 /tools
parentdb6ae3a5160663bea36cdd70f2f1a916594ed050 (diff)
INTEGRATION: CWS aw021 (1.8.2); FILE MERGED
2004/11/11 14:27:14 aw 1.8.2.1: #i37009#
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/poly2.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/source/generic/poly2.cxx b/tools/source/generic/poly2.cxx
index 5aba76263408..0d79cbc61ea6 100644
--- a/tools/source/generic/poly2.cxx
+++ b/tools/source/generic/poly2.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: poly2.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: pjunck $ $Date: 2004-11-03 08:42:23 $
+ * last change: $Author: obo $ $Date: 2004-11-18 10:58:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -799,11 +799,13 @@ void PolyPolygon::ImplDoOperation( const PolyPolygon& rPolyPoly, PolyPolygon& rR
// polygons.
if( aMergePolyPolygonA.areControlPointsUsed() )
aMergePolyPolygonA = ::basegfx::tools::adaptiveSubdivideByAngle(aMergePolyPolygonA);
- ::basegfx::tools::correctOrientations( aMergePolyPolygonA );
+ // #i37009#
+ aMergePolyPolygonA = ::basegfx::tools::correctOrientations( aMergePolyPolygonA );
if( aMergePolyPolygonB.areControlPointsUsed() )
aMergePolyPolygonB = ::basegfx::tools::adaptiveSubdivideByAngle(aMergePolyPolygonB);
- ::basegfx::tools::correctOrientations( aMergePolyPolygonB );
+ // #i37009#
+ aMergePolyPolygonB = ::basegfx::tools::correctOrientations( aMergePolyPolygonB );
switch( nOperation )
{