diff options
| author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:01:47 +0000 |
|---|---|---|
| committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:01:47 +0000 |
| commit | c0e0d4f15c8643f1d47e44c3d11b77c9f9b88747 (patch) | |
| tree | 1e4314b178663890723f4dc404a1cb0ab6aed968 | |
| parent | 052c7dab0a4b4b084aacf96c532f65ff68df0135 (diff) | |
INTEGRATION: CWS warningfixes03_SRC680 (1.5.158); FILE MERGED
2006/08/18 14:16:24 mhu 1.5.158.1: #i68745# Fixed GCC 4.0.x warning(s).
| -rw-r--r-- | xmloff/source/style/kernihdl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/kernihdl.cxx b/xmloff/source/style/kernihdl.cxx index ddbde25408e7..85ae0459b988 100644 --- a/xmloff/source/style/kernihdl.cxx +++ b/xmloff/source/style/kernihdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: kernihdl.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 14:43:48 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:01:47 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -87,7 +87,7 @@ sal_Bool XMLKerningPropHdl::importXML( const OUString& rStrImpValue, Any& rValue sal_Bool XMLKerningPropHdl::exportXML( OUString& rStrExpValue, const Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const { sal_Bool bRet = sal_False; - sal_Int16 nValue; + sal_Int16 nValue = sal_Int16(); if( rValue >>= nValue ) { |
