summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:02:49 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:02:49 +0000
commit36e60222b8d1f530e018df58fade1b5bb7ddd92a (patch)
treeaf7d45511b7d513e4d0da782fa3c9482cdd05a75 /xmloff
parent3d5a7e6b9a3dd0fff65f488eab50cce19eef2a3e (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.20.16); FILE MERGED
2006/08/18 14:16:25 mhu 1.20.16.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmlbahdl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/style/xmlbahdl.cxx b/xmloff/source/style/xmlbahdl.cxx
index 42a31c79769c..ccf33a4b1302 100644
--- a/xmloff/source/style/xmlbahdl.cxx
+++ b/xmloff/source/style/xmlbahdl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xmlbahdl.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: kz $ $Date: 2006-07-19 16:36:40 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:02:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -275,7 +275,7 @@ sal_Bool XMLBoolPropHdl::exportXML( OUString& rStrExpValue, const Any& rValue, c
{
sal_Bool bRet = sal_False;
OUStringBuffer aOut;
- sal_Bool bValue;
+ sal_Bool bValue = sal_Bool();
if (rValue >>= bValue)
{
@@ -313,7 +313,7 @@ sal_Bool XMLNBoolPropHdl::exportXML( OUString& rStrExpValue, const Any& rValue,
{
sal_Bool bRet = sal_False;
OUStringBuffer aOut;
- sal_Bool bValue;
+ sal_Bool bValue = sal_Bool();
if (rValue >>= bValue)
{