summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-02-12 13:40:02 +0000
committerKurt Zenker <kz@openoffice.org>2007-02-12 13:40:02 +0000
commit5385608b26338c2a6e4dd7d084520ceb785bdb96 (patch)
treec97952fab8750143cefdbcfc9cd7575bb0bf3087
parentbfbe01b840b80259b1cb5c749bf939080fc979ea (diff)
INTEGRATION: CWS aw043_SRC680 (1.21.132); FILE MERGED
2007/02/01 10:28:50 aw 1.21.132.1: #i74056# ImpScalePoly interface changed to return scaled poly, adapted in all places
-rw-r--r--svx/source/engine3d/extrud3d.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/svx/source/engine3d/extrud3d.cxx b/svx/source/engine3d/extrud3d.cxx
index f9f829a45f91..4f43bee8d7d7 100644
--- a/svx/source/engine3d/extrud3d.cxx
+++ b/svx/source/engine3d/extrud3d.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: extrud3d.cxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: ihi $ $Date: 2006-11-14 13:19:00 $
+ * last change: $Author: kz $ $Date: 2007-02-12 14:40:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -185,7 +185,10 @@ basegfx::B3DPolyPolygon E3dExtrudeObj::GetBackSide(const basegfx::B3DPolyPolygon
{
// eventuell Skalieren
if(GetPercentBackScale() != 100)
- ImpScalePoly(aBackSide, (double)GetPercentBackScale() / 100.0);
+ {
+ // #i74056#
+ aBackSide = ImpScalePoly(aBackSide, (double)GetPercentBackScale() / 100.0);
+ }
// Verschieben
basegfx::B3DHomMatrix aTrans;