summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-21 16:35:01 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-21 16:35:01 +0000
commite7b9bf275e61a620105919b6c1e6a4be08779669 (patch)
tree4d520947fbe0593b6f38e34006cd664a694363a9
parent084587cdc1303c78e2fbc860994d5e9d44adc8f6 (diff)
INTEGRATION: CWS pj65 (1.32.30); FILE MERGED
2006/10/31 14:03:10 pjanik 1.32.30.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
-rw-r--r--xmloff/source/forms/propertyexport.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/forms/propertyexport.cxx b/xmloff/source/forms/propertyexport.cxx
index 8f272840a624..3b56d81ee5ef 100644
--- a/xmloff/source/forms/propertyexport.cxx
+++ b/xmloff/source/forms/propertyexport.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: propertyexport.cxx,v $
*
- * $Revision: 1.32 $
+ * $Revision: 1.33 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 10:37:56 $
+ * last change: $Author: vg $ $Date: 2006-11-21 17:35:01 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -613,7 +613,7 @@ namespace xmloff
case TypeClass_ENUM:
{
// convert it into an int32
- sal_Int32 nValue;
+ sal_Int32 nValue = 0;
::cppu::enum2int(nValue, _rValue);
m_rContext.getGlobalContext().GetMM100UnitConverter().convertNumber(aBuffer, nValue);
}