summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:14:11 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:14:11 +0000
commit4f5bcf94dc32edfc60d017f1b4b580d9ef60c22e (patch)
tree5d5f6ef13b478c4ee47b3d39ffef1c078144ef11 /configmgr
parent1cce4712ec8cb2b73b9240c354ab39012ee48c09 (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.63.16); FILE MERGED
2006/08/18 13:56:57 mhu 1.63.16.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/api2/providerimpl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/configmgr/source/api2/providerimpl.cxx b/configmgr/source/api2/providerimpl.cxx
index 6e3da77d3233..d27cce8211af 100644
--- a/configmgr/source/api2/providerimpl.cxx
+++ b/configmgr/source/api2/providerimpl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: providerimpl.cxx,v $
*
- * $Revision: 1.63 $
+ * $Revision: 1.64 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 23:16:41 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:14:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -770,7 +770,7 @@ namespace configmgr
case ARG_ASYNC:
case ARG_ASYNC_DEPRECATED:
{
- sal_Bool bBoolVal;
+ sal_Bool bBoolVal = sal_False;
if (aValue >>= bBoolVal)
_rOptions.enableAsync(!!bBoolVal);
else
@@ -779,7 +779,7 @@ namespace configmgr
break;
case ARG_REFRESH:
{
- sal_Bool bBoolVal;
+ sal_Bool bBoolVal = sal_False;
if (aValue >>= bBoolVal)
_rOptions.forceRefresh(!!bBoolVal);
else