diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:37:34 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:37:34 +0000 |
commit | 5d54156584dca8608ee520cc1fa974be367d3dca (patch) | |
tree | 261919a233d56f82f47fc48040bbbf9fd6fcd2c8 /xmloff | |
parent | 0f723e989c16912e46ebb3e2fa5d25406bf013a7 (diff) |
INTEGRATION: CWS pj65 (1.6.12); FILE MERGED
2006/10/31 14:03:48 pjanik 1.6.12.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/postuhdl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/postuhdl.cxx b/xmloff/source/style/postuhdl.cxx index fbbd2245c1c7..cf651056468c 100644 --- a/xmloff/source/style/postuhdl.cxx +++ b/xmloff/source/style/postuhdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: postuhdl.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: obo $ $Date: 2006-10-12 14:50:37 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:37:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -106,7 +106,7 @@ sal_Bool XMLPosturePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& r if( !( rValue >>= eSlant ) ) { - sal_Int32 nValue; + sal_Int32 nValue = 0; if( !( rValue >>= nValue ) ) return sal_False; |