summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 13:55:01 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 13:55:01 +0000
commit3b7356b78aa199fc0c36ef49ff454be4432aab22 (patch)
treec003297a85069e509153d81b701970815d4eba32 /xmloff
parent1e768c2699c3bc8d05acbfcfc7fe1049acf49390 (diff)
INTEGRATION: CWS sb59 (1.128.4); FILE MERGED
2006/08/09 12:53:59 sb 1.128.4.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/txtparae.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index f38b76342bf8..7be13e558ef3 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: txtparae.cxx,v $
*
- * $Revision: 1.129 $
+ * $Revision: 1.130 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 11:18:46 $
+ * last change: $Author: obo $ $Date: 2006-10-12 14:55:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -2442,7 +2442,7 @@ void XMLTextParagraphExport::exportContour(
// svg:viewbox
SdXMLImExViewBox aViewBox(0, 0, aSize.Width, aSize.Height);
GetExport().AddAttribute(XML_NAMESPACE_SVG, XML_VIEWBOX,
- aViewBox.GetExportString(GetExport().GetMM100UnitConverter()));
+ aViewBox.GetExportString());
sal_Int32 nOuterCnt( aSourcePolyPolygon.getLength() );
@@ -2453,8 +2453,7 @@ void XMLTextParagraphExport::exportContour(
/*const*/ PointSequence* pSequence =
(PointSequence*)aSourcePolyPolygon.getConstArray();
- SdXMLImExPointsElement aPoints( pSequence, aViewBox, aPoint,
- aSize, GetExport().GetMM100UnitConverter() );
+ SdXMLImExPointsElement aPoints( pSequence, aViewBox, aPoint, aSize );
// write point array
GetExport().AddAttribute( XML_NAMESPACE_DRAW, XML_POINTS,
@@ -2477,8 +2476,7 @@ void XMLTextParagraphExport::exportContour(
if(pSequence)
{
aSvgDElement.AddPolygon(pSequence, 0L, aPoint,
- aSize, GetExport().GetMM100UnitConverter(),
- sal_True );
+ aSize, sal_True );
}
}