summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:11:21 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:11:21 +0000
commitc8bd21bf1768781c886bfac1157ed011c2f4ab7f (patch)
treeb36a1d7b524d6804e172d288da6ce9b28c74d30f /svtools
parentf8c96926621a2242793539c000129ff13ee58419 (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.6.90); FILE MERGED
2006/08/18 14:31:22 mhu 1.6.90.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/lingucfg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/config/lingucfg.cxx b/svtools/source/config/lingucfg.cxx
index 914911653dc3..e4f4447dbc1d 100644
--- a/svtools/source/config/lingucfg.cxx
+++ b/svtools/source/config/lingucfg.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: lingucfg.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 20:46:00 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:11:21 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -569,7 +569,7 @@ BOOL SvtLinguConfigItem::SetProperty( INT32 nPropertyHandle, const Any &rValue )
if (pbVal)
{
- BOOL bNew;
+ BOOL bNew = BOOL();
if (rValue >>= bNew)
{
if (bNew != *pbVal)
@@ -582,7 +582,7 @@ BOOL SvtLinguConfigItem::SetProperty( INT32 nPropertyHandle, const Any &rValue )
}
else if (pnVal)
{
- INT16 nNew;
+ INT16 nNew = INT16();
if (rValue >>= nNew)
{
if (nNew != *pnVal)