summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--forms/source/xforms/convert.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/xforms/convert.cxx b/forms/source/xforms/convert.cxx
index be7621699eaf..939628267094 100644
--- a/forms/source/xforms/convert.cxx
+++ b/forms/source/xforms/convert.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: convert.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 23:15:28 $
+ * last change: $Author: kz $ $Date: 2006-07-19 16:44:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -242,7 +242,7 @@ namespace
// ------------------------------------------------------------------------
OUString lcl_toXSD_bool( const Any& rAny )
- { bool b; rAny >>= b; return b ? OUSTRING("true") : OUSTRING("false"); }
+ { bool b = false; rAny >>= b; return b ? OUSTRING("true") : OUSTRING("false"); }
// ------------------------------------------------------------------------
Any lcl_toAny_bool( const OUString& rStr )