summaryrefslogtreecommitdiff
path: root/xmloff/source/xforms
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-21 16:39:18 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-21 16:39:18 +0000
commit280930cc80b3978b9c7e7077525fbcfc81e405db (patch)
treeda85c91a662df63591819aa687904d0a27b0ba88 /xmloff/source/xforms
parentbabae6c6375e631d18c9148b896260a1c728ebfd (diff)
INTEGRATION: CWS pj65 (1.9.30); FILE MERGED
2006/10/31 14:04:39 pjanik 1.9.30.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
Diffstat (limited to 'xmloff/source/xforms')
-rw-r--r--xmloff/source/xforms/xformsexport.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/xforms/xformsexport.cxx b/xmloff/source/xforms/xformsexport.cxx
index 28d8a00d1d92..1595faf985ec 100644
--- a/xmloff/source/xforms/xformsexport.cxx
+++ b/xmloff/source/xforms/xformsexport.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xformsexport.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 11:32:08 $
+ * last change: $Author: vg $ $Date: 2006-11-21 17:39:18 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -650,7 +650,7 @@ template<typename T, void (*FUNC)( OUStringBuffer&, T )>
OUString lcl_convert( const Any& rAny )
{
OUStringBuffer aBuffer;
- T aData;
+ T aData = T();
if( rAny >>= aData )
{
FUNC( aBuffer, aData );