summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdotxtr.cxx
diff options
context:
space:
mode:
authorPascal Junck <pjunck@openoffice.org>2004-11-03 10:03:06 +0000
committerPascal Junck <pjunck@openoffice.org>2004-11-03 10:03:06 +0000
commit9798dcc2d07441dcdbe88282f6303ebb5cbbf00d (patch)
treed39c1afaae4fda0a9c5bc0d0ea11299399d8e221 /svx/source/svdraw/svdotxtr.cxx
parent30583f7d78468638c96f713e829b0fc9d9f0cb50 (diff)
INTEGRATION: CWS aw019 (1.7.250); FILE MERGED
2004/10/21 15:53:31 aw 1.7.250.1: #i34831#
Diffstat (limited to 'svx/source/svdraw/svdotxtr.cxx')
-rw-r--r--svx/source/svdraw/svdotxtr.cxx19
1 files changed, 10 insertions, 9 deletions
diff --git a/svx/source/svdraw/svdotxtr.cxx b/svx/source/svdraw/svdotxtr.cxx
index 3db2ddf03e6e..07ababb2c9b2 100644
--- a/svx/source/svdraw/svdotxtr.cxx
+++ b/svx/source/svdraw/svdotxtr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdotxtr.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2004-05-10 14:33:13 $
+ * last change: $Author: pjunck $ $Date: 2004-11-03 11:03:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -425,17 +425,18 @@ SdrObject* SdrTextObj::ImpConvertMakeObj(const XPolyPolygon& rXPP, FASTBOOL bClo
}
if (!bBezier && pModel!=NULL) {
// Polygon aus Bezierkurve interpolieren
- VirtualDevice aVDev;
+//BFS09 VirtualDevice aVDev;
XPolyPolygon aXPolyPoly;
- MapMode aMap = aVDev.GetMapMode();
- aMap.SetMapUnit(pModel->GetScaleUnit());
- aMap.SetScaleX(pModel->GetScaleFraction());
- aMap.SetScaleY(pModel->GetScaleFraction());
- aVDev.SetMapMode(aMap);
+//BFS09 MapMode aMap = aVDev.GetMapMode();
+//BFS09 aMap.SetMapUnit(pModel->GetScaleUnit());
+//BFS09 aMap.SetScaleX(pModel->GetScaleFraction());
+//BFS09 aMap.SetScaleY(pModel->GetScaleFraction());
+//BFS09 aVDev.SetMapMode(aMap);
for (USHORT i=0; i<aXPP.Count(); i++)
- aXPolyPoly.Insert(XOutCreatePolygon(aXPP[i],&aVDev));
+ aXPolyPoly.Insert(XOutCreatePolygon(aXPP[i]));
+//BFS09 aXPolyPoly.Insert(XOutCreatePolygon(aXPP[i],&aVDev));
aXPP=aXPolyPoly;
ePathKind=bClosed?OBJ_POLY:OBJ_PLIN;
}