diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:11:43 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:11:43 +0000 |
commit | 1ff29ff89b89c8824a44bf682460a9533438884f (patch) | |
tree | 3910a98db13da4d18445bd85dfc99965bebfa504 /svtools/source/config/searchopt.cxx | |
parent | 370101391426ca6c36c62d1b5296df99cb8d813a (diff) |
INTEGRATION: CWS warningfixes03_SRC680 (1.8.90); FILE MERGED
2006/08/18 14:31:22 mhu 1.8.90.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'svtools/source/config/searchopt.cxx')
-rw-r--r-- | svtools/source/config/searchopt.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/config/searchopt.cxx b/svtools/source/config/searchopt.cxx index 73d8b9a97259..411c8cc50746 100644 --- a/svtools/source/config/searchopt.cxx +++ b/svtools/source/config/searchopt.cxx @@ -4,9 +4,9 @@ * * $RCSfile: searchopt.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: hr $ $Date: 2006-06-19 20:48:15 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:11:43 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -216,7 +216,7 @@ BOOL SvtSearchOptions_Impl::Load() DBG_ASSERT( rVal.hasValue(), "property value missing" ); if (rVal.hasValue()) { - BOOL bVal; + BOOL bVal = BOOL(); if (rVal >>= bVal) { if (i <= MAX_FLAGS_OFFSET) |