diff options
author | Armin Weiss <aw@openoffice.org> | 2000-12-20 12:12:54 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2000-12-20 12:12:54 +0000 |
commit | 18d9c89e4cb239f39addd3a6eaf58395ea8b26ac (patch) | |
tree | 3e8327be26539641e0b12daea235b0bb66703a80 /svx | |
parent | 700b7f2ab6528d448b07199fe511e505c8399300 (diff) |
removed ApplyTransform() completely
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/msfilter/msdffimp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/msfilter/msdffimp.cxx b/svx/source/msfilter/msdffimp.cxx index 9f9f169e57ca..150b705445d3 100644 --- a/svx/source/msfilter/msdffimp.cxx +++ b/svx/source/msfilter/msdffimp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: msdffimp.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: jp $ $Date: 2000-12-15 17:25:38 $ + * last change: $Author: aw $ $Date: 2000-12-20 13:12:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2363,7 +2363,7 @@ SdrObject* SvxMSDffManager::Import3DObject( SdrObject* pRet, SfxItemSet& aSet, R Matrix4D aMatrix; // 3D-Objekt auf die Mitte des Gesamtrechtecks zentrieren aMatrix.Translate( Vector3D( -aCenter.X(), aCenter.Y(), 0.0 ) ); - pScene->ApplyTransform( aMatrix ); + pScene->SetTransform(pScene->GetTransform() * aMatrix); pScene->CorrectSceneDimensions(); pScene->NbcSetSnapRect( aBoundRect ); |