Kaydet (Commit) 4f5bcf94 authored tarafından Ivo Hinkelmann's avatar Ivo Hinkelmann

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).
üst 1cce4712
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: providerimpl.cxx,v $ * $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 Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -770,7 +770,7 @@ namespace configmgr ...@@ -770,7 +770,7 @@ namespace configmgr
case ARG_ASYNC: case ARG_ASYNC:
case ARG_ASYNC_DEPRECATED: case ARG_ASYNC_DEPRECATED:
{ {
sal_Bool bBoolVal; sal_Bool bBoolVal = sal_False;
if (aValue >>= bBoolVal) if (aValue >>= bBoolVal)
_rOptions.enableAsync(!!bBoolVal); _rOptions.enableAsync(!!bBoolVal);
else else
...@@ -779,7 +779,7 @@ namespace configmgr ...@@ -779,7 +779,7 @@ namespace configmgr
break; break;
case ARG_REFRESH: case ARG_REFRESH:
{ {
sal_Bool bBoolVal; sal_Bool bBoolVal = sal_False;
if (aValue >>= bBoolVal) if (aValue >>= bBoolVal)
_rOptions.forceRefresh(!!bBoolVal); _rOptions.forceRefresh(!!bBoolVal);
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment