diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-10-27 12:27:55 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-10-27 12:27:55 +0000 |
commit | bef7bb02c3c67bb997668299202afdb2f25d53c5 (patch) | |
tree | efe9b195c346f0a80b80151a27eb5c6539b3c8de /svx | |
parent | aa281bfc8740981a3d18b639bed9fb21feba9d82 (diff) |
INTEGRATION: CWS aw005 (1.19.286); FILE MERGED
2003/10/08 16:59:25 aw 1.19.286.1: #112587#
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unoshap3.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/unodraw/unoshap3.cxx b/svx/source/unodraw/unoshap3.cxx index 824a8b701467..93a944eb2d68 100644 --- a/svx/source/unodraw/unoshap3.cxx +++ b/svx/source/unodraw/unoshap3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unoshap3.cxx,v $ * - * $Revision: 1.19 $ + * $Revision: 1.20 $ * - * last change: $Author: hr $ $Date: 2003-03-27 15:05:11 $ + * last change: $Author: rt $ $Date: 2003-10-27 13:27:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -915,7 +915,7 @@ uno::Any SAL_CALL Svx3DLatheObject::getPropertyValue( const OUString& aPropertyN // 3D object during it's creation. Matrix4D aTransMat; aTransMat.TranslateZ(rFirstPoint.Z()); - aMat = aTransMat * aMat; + aMat = aMat * aTransMat; // #112587# } } @@ -1027,7 +1027,7 @@ uno::Any SAL_CALL Svx3DExtrudeObject::getPropertyValue( const OUString& aPropert // 3D object during it's creation. Matrix4D aTransMat; aTransMat.TranslateZ(rFirstPoint.Z()); - aMat = aTransMat * aMat; + aMat = aMat * aTransMat; // #112587# } } |