summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:11:11 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:11:11 +0000
commitf8c96926621a2242793539c000129ff13ee58419 (patch)
tree2cd8d2ff249c32ddd9061c5487f2cd9633baadcf /svtools
parent855e5f9e97d30a88656bcb3567de5c7a9da1be49 (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.18.90); FILE MERGED
2006/08/18 14:31:22 mhu 1.18.90.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/helpopt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx
index 4566417d74b3..6efcf399a757 100644
--- a/svtools/source/config/helpopt.cxx
+++ b/svtools/source/config/helpopt.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: helpopt.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 20:44:09 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:11:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -231,7 +231,7 @@ void SvtHelpOptions_Impl::Load(const uno::Sequence< ::rtl::OUString>& rProperty
DBG_ASSERT( pValues[nProp].hasValue(), "property value missing" );
if ( pValues[nProp].hasValue() )
{
- sal_Bool bTmp;
+ sal_Bool bTmp = sal_Bool();
::rtl::OUString aTmpStr;
sal_Int32 nTmpInt;
if ( pValues[nProp] >>= bTmp )