diff options
author | Daniel Vogelheim <dvo@openoffice.org> | 2001-03-30 12:53:39 +0000 |
---|---|---|
committer | Daniel Vogelheim <dvo@openoffice.org> | 2001-03-30 12:53:39 +0000 |
commit | 326924ba8eddb748432384ccd7edc4687db13de1 (patch) | |
tree | ac3c57e62bd6ec249aff4e72a309d2b0270f87f2 /xmloff | |
parent | 0d29539da88bc2a201912eed5e809e15df56e204 (diff) |
#81839# changed polygon points attribute to namespace svg
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/XMLImageMapContext.cxx | 6 | ||||
-rw-r--r-- | xmloff/source/draw/XMLImageMapExport.cxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/draw/XMLImageMapContext.cxx b/xmloff/source/draw/XMLImageMapContext.cxx index 482539651362..81fdd90fd79d 100644 --- a/xmloff/source/draw/XMLImageMapContext.cxx +++ b/xmloff/source/draw/XMLImageMapContext.cxx @@ -2,9 +2,9 @@ * * $RCSfile: XMLImageMapContext.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: dvo $ $Date: 2001-03-29 14:40:26 $ + * last change: $Author: dvo $ $Date: 2001-03-30 13:53:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -187,7 +187,7 @@ static __FAR_DATA SvXMLTokenMapEntry aImageMapObjectTokenMap[] = { XML_NAMESPACE_SVG, sXML_height, XML_TOK_IMAP_HEIGTH }, { XML_NAMESPACE_SVG, sXML_r, XML_TOK_IMAP_RADIUS }, { XML_NAMESPACE_SVG, sXML_viewBox, XML_TOK_IMAP_VIEWBOX }, - { XML_NAMESPACE_DRAW, sXML_points, XML_TOK_IMAP_POINTS }, + { XML_NAMESPACE_SVG, sXML_points, XML_TOK_IMAP_POINTS }, { XML_NAMESPACE_OFFICE, sXML_target_frame_name, XML_TOK_IMAP_TARGET }, XML_TOKEN_MAP_END }; diff --git a/xmloff/source/draw/XMLImageMapExport.cxx b/xmloff/source/draw/XMLImageMapExport.cxx index 4333b40a47b3..fdc892bceae6 100644 --- a/xmloff/source/draw/XMLImageMapExport.cxx +++ b/xmloff/source/draw/XMLImageMapExport.cxx @@ -2,9 +2,9 @@ * * $RCSfile: XMLImageMapExport.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: dvo $ $Date: 2001-03-29 14:40:26 $ + * last change: $Author: dvo $ $Date: 2001-03-30 13:53:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -471,6 +471,6 @@ void XMLImageMapExport::ExportPolygon( awt::Size aSize(nWidth, nHeight); SdXMLImExPointsElement aPoints( &aPoly, aViewBox, aPoint, aSize, rExport.GetMM100UnitConverter() ); - rExport.AddAttribute( XML_NAMESPACE_DRAW, sXML_points, + rExport.AddAttribute( XML_NAMESPACE_SVG, sXML_points, aPoints.GetExportString()); } |