diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:32:31 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:32:31 +0000 |
commit | 869643ba8a7dce096ddd474e43459e0519ae21c4 (patch) | |
tree | 811d0258ecada5f312e95cce1844a6df55b0d6a5 /xmloff | |
parent | c9386df9b6f2b35307e37283eed89c31cd387309 (diff) |
INTEGRATION: CWS pj65 (1.12.12); FILE MERGED
2006/10/31 14:02:53 pjanik 1.12.12.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/XMLImageMapExport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/XMLImageMapExport.cxx b/xmloff/source/draw/XMLImageMapExport.cxx index 426843e0f411..9d345a8c68a6 100644 --- a/xmloff/source/draw/XMLImageMapExport.cxx +++ b/xmloff/source/draw/XMLImageMapExport.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XMLImageMapExport.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: obo $ $Date: 2006-10-12 14:40:01 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:32:31 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -376,7 +376,7 @@ void XMLImageMapExport::ExportCircle( // radius aAny = rPropertySet->getPropertyValue(msRadius); - sal_Int32 nRadius; + sal_Int32 nRadius = 0; aAny >>= nRadius; mrExport.GetMM100UnitConverter().convertMeasure(aBuffer, nRadius); mrExport.AddAttribute( XML_NAMESPACE_SVG, XML_R, |