summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:04:48 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-29 10:04:48 +0000
commit6a00884d7376e90a9c06c8a64ecb025c282f3a02 (patch)
treec55e1c757841d94eaae5ab33b0c67c1cfa231098 /xmlscript
parent99304d48354747140b408fc22eac1511d3d9c511 (diff)
INTEGRATION: CWS warningfixes03_SRC680 (1.17.16); FILE MERGED
2006/08/18 13:47:18 mhu 1.17.16.1: #i68745# Fixed GCC 4.0.x warning(s).
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xmldlg_imexp/exp_share.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlscript/source/xmldlg_imexp/exp_share.hxx b/xmlscript/source/xmldlg_imexp/exp_share.hxx
index 14f122dcf296..1142d638a104 100644
--- a/xmlscript/source/xmldlg_imexp/exp_share.hxx
+++ b/xmlscript/source/xmldlg_imexp/exp_share.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: exp_share.hxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 16:12:25 $
+ * last change: $Author: ihi $ $Date: 2006-08-29 11:04:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -227,7 +227,7 @@ inline void ElementDescriptor::read(
_xPropState->getPropertyState( propName ))
{
css::uno::Any a( _xProps->getPropertyValue( propName ) );
- T v;
+ T v = T();
if (a >>= v)
addAttribute( attrName, ::rtl::OUString::valueOf(v) );
else