diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:34:18 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:34:18 +0000 |
commit | 4d670f7f169863b9c6598b685924ac8f89669f0b (patch) | |
tree | 95f3420d17ca6f5d0f5e237aedbf6371561081e0 /xmloff/source/forms | |
parent | 3ba6b5672ec6ac073298695636c4bfbc081a0ea4 (diff) |
INTEGRATION: CWS pj65 (1.18.12); FILE MERGED
2006/10/31 14:02:57 pjanik 1.18.12.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'xmloff/source/forms')
-rw-r--r-- | xmloff/source/forms/controlpropertyhdl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/forms/controlpropertyhdl.cxx b/xmloff/source/forms/controlpropertyhdl.cxx index 208762c170b6..2e30cfd157cd 100644 --- a/xmloff/source/forms/controlpropertyhdl.cxx +++ b/xmloff/source/forms/controlpropertyhdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: controlpropertyhdl.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: obo $ $Date: 2006-10-12 14:42:46 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:34:18 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -425,7 +425,7 @@ namespace xmloff //--------------------------------------------------------------------- sal_Bool ORotationAngleHandler::exportXML( ::rtl::OUString& _rStrExpValue, const Any& _rValue, const SvXMLUnitConverter& ) const { - float fAngle; + float fAngle = 0; sal_Bool bSuccess = (_rValue >>= fAngle); if (bSuccess) |