diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:14:21 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-29 10:14:21 +0000 |
commit | 8baa35a568be0d3898148b595a6c415d37a380b3 (patch) | |
tree | 7a9a721f00f0193004d4dc639b3849b328a2b30b /configmgr | |
parent | 4f5bcf94dc32edfc60d017f1b4b580d9ef60c22e (diff) |
INTEGRATION: CWS warningfixes03_SRC680 (1.9.58); FILE MERGED
2006/08/18 13:56:57 mhu 1.9.58.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/backend/updatesvc.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configmgr/source/backend/updatesvc.cxx b/configmgr/source/backend/updatesvc.cxx index 40378a41ebad..8046789e0c95 100644 --- a/configmgr/source/backend/updatesvc.cxx +++ b/configmgr/source/backend/updatesvc.cxx @@ -4,9 +4,9 @@ * * $RCSfile: updatesvc.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-08 03:35:47 $ + * last change: $Author: ihi $ $Date: 2006-08-29 11:14:21 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -159,7 +159,7 @@ sal_Bool UpdateService::setImplementationProperty(OUString const & aName, uno::A { if (aName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("Overwrite"))) { - sal_Bool bOverwrite; + sal_Bool bOverwrite = sal_False; if (aValue >>= bOverwrite) { if (!bOverwrite) @@ -174,7 +174,7 @@ sal_Bool UpdateService::setImplementationProperty(OUString const & aName, uno::A else if (aName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("Truncate"))) { - sal_Bool bTruncate; + sal_Bool bTruncate = sal_False; if (aValue >>= bTruncate) { if (!bTruncate) |