diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:02:09 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:02:09 +0000 |
commit | c57dc6da87acfdf7b8b6e3d8fee64ccf051de9d0 (patch) | |
tree | 84aefbb78bbec3eca5a323d0e80b04283c90cf6a /xmloff | |
parent | 04b41b3d4446a3d2f3a9f939782e1a3740461b30 (diff) |
INTEGRATION: CWS warningfixes03_SRC680 (1.4.32); FILE MERGED
2006/08/18 14:16:25 mhu 1.4.32.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/opaquhdl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/opaquhdl.cxx b/xmloff/source/style/opaquhdl.cxx index cdde457fa5a9..9d558a7750e2 100644 --- a/xmloff/source/style/opaquhdl.cxx +++ b/xmloff/source/style/opaquhdl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: opaquhdl.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: hr $ $Date: 2006-06-19 18:34:02 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:02:09 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -84,7 +84,7 @@ sal_Bool XMLOpaquePropHdl::importXML( const OUString& rStrImpValue, Any& rValue, sal_Bool XMLOpaquePropHdl::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) { |