diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:02:19 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:02:19 +0000 |
commit | 36a4ed038aafcb9cb50553d0756f1eb66534b04b (patch) | |
tree | 2628529e8cfcf6960397efc95c7c86e48f4f301c /xmloff | |
parent | c57dc6da87acfdf7b8b6e3d8fee64ccf051de9d0 (diff) |
INTEGRATION: CWS warningfixes03_SRC680 (1.5.32); FILE MERGED
2006/08/18 14:16:25 mhu 1.5.32.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/shdwdhdl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/shdwdhdl.cxx b/xmloff/source/style/shdwdhdl.cxx index ea95aa8c55d3..f73869c91f10 100644 --- a/xmloff/source/style/shdwdhdl.cxx +++ b/xmloff/source/style/shdwdhdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: shdwdhdl.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: hr $ $Date: 2006-06-19 18:34:33 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:02:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -79,7 +79,7 @@ sal_Bool XMLShadowedPropHdl::importXML( const OUString& rStrImpValue, Any& rValu sal_Bool XMLShadowedPropHdl::exportXML( OUString& rStrExpValue, const Any& rValue, const SvXMLUnitConverter& ) const { sal_Bool bRet = sal_False; - sal_Bool bValue; + sal_Bool bValue = sal_Bool(); if (rValue >>= bValue) { |