summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/XMLImageMapExport.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 13:40:51 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 13:40:51 +0000
commit0bf3841e45e9b92c983d51608707042f0ef5aeec (patch)
tree9c3f279a5caff05ee676cd76ec6fa598a57ea0dd /xmloff/source/draw/XMLImageMapExport.cxx
parent5de93a88bd8baff1a358f20c37503137fe61dd22 (diff)
INTEGRATION: CWS sb59 (1.10.24); FILE MERGED
2006/08/09 12:53:50 sb 1.10.24.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'xmloff/source/draw/XMLImageMapExport.cxx')
-rw-r--r--xmloff/source/draw/XMLImageMapExport.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/xmloff/source/draw/XMLImageMapExport.cxx b/xmloff/source/draw/XMLImageMapExport.cxx
index afbd1196f4fc..426843e0f411 100644
--- a/xmloff/source/draw/XMLImageMapExport.cxx
+++ b/xmloff/source/draw/XMLImageMapExport.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: XMLImageMapExport.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 10:25:09 $
+ * last change: $Author: obo $ $Date: 2006-10-12 14:40:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -432,13 +432,12 @@ void XMLImageMapExport::ExportPolygon(
// svg:viewbox
SdXMLImExViewBox aViewBox(0, 0, nWidth, nHeight);
mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_VIEWBOX,
- aViewBox.GetExportString(mrExport.GetMM100UnitConverter()));
+ aViewBox.GetExportString());
// export point sequence
awt::Point aPoint(0, 0);
awt::Size aSize(nWidth, nHeight);
- SdXMLImExPointsElement aPoints( &aPoly, aViewBox, aPoint, aSize,
- mrExport.GetMM100UnitConverter() );
+ SdXMLImExPointsElement aPoints( &aPoly, aViewBox, aPoint, aSize );
mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_POINTS,
aPoints.GetExportString());
}