diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:15:04 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:15:04 +0000 |
commit | 0d891b07cb34e16bcdffc69777974927707861a0 (patch) | |
tree | c11da16fcd49e6d78ef6c2e82ec6e242608fbd06 /uui/source/iahndl.cxx | |
parent | 657b731e8f040e7274ebf51740871551cb69fd6e (diff) |
INTEGRATION: CWS warningfixes03_SRC680 (1.50.10.1.2); FILE MERGED
2006/08/18 14:28:09 mhu 1.50.10.1.2.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'uui/source/iahndl.cxx')
-rw-r--r-- | uui/source/iahndl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index 6aa3ea6a850b..15e5d0e93dc9 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -4,9 +4,9 @@ * * $RCSfile: iahndl.cxx,v $ * - * $Revision: 1.51 $ + * $Revision: 1.52 $ * - * last change: $Author: hr $ $Date: 2006-08-11 17:15:18 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:15:04 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -481,7 +481,7 @@ getBoolRequestArgument(star::uno::Sequence< star::uno::Any > const & star::beans::PropertyValue aProperty; if ((rArguments[i] >>= aProperty) && aProperty.Name == rKey) { - sal_Bool bValue; + sal_Bool bValue = sal_Bool(); if (aProperty.Value >>= bValue) { if (pValue) |