summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-10-21 10:51:09 +0000
committerOliver Bolte <obo@openoffice.org>2004-10-21 10:51:09 +0000
commit4a797602fd9a6141e16c5cb5289861cd036b73cd (patch)
tree124e2edf3c6949e1fe448c082c7d9cc23dfbbc80 /ucbhelper
parent1d1b5ff4597a41d459e747be1de45e79b010a7a2 (diff)
INTEGRATION: CWS valgrind57 (1.4.154); FILE MERGED
2004/10/18 13:26:33 dbo 1.4.154.1: #i35713# uninit members
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/source/provider/propertyvalueset.cxx15
1 files changed, 11 insertions, 4 deletions
diff --git a/ucbhelper/source/provider/propertyvalueset.cxx b/ucbhelper/source/provider/propertyvalueset.cxx
index 94a3a4ec1507..2be13d771040 100644
--- a/ucbhelper/source/provider/propertyvalueset.cxx
+++ b/ucbhelper/source/provider/propertyvalueset.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propertyvalueset.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: armin $ $Date: 2001-03-08 10:01:02 $
+ * last change: $Author: obo $ $Date: 2004-10-21 11:51:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -163,9 +163,16 @@ struct PropertyValue
Any aObject; // getObject
inline PropertyValue()
- : nPropsSet( NO_VALUE_SET ), nOrigValue( NO_VALUE_SET ) {}
+ : nPropsSet( NO_VALUE_SET ), nOrigValue( NO_VALUE_SET ),
+ bBoolean(false),
+ nByte(0),
+ nShort(0),
+ nInt(0),
+ nLong(0),
+ nFloat(0.0),
+ nDouble(0.0)
+ {}
};
-
} // namespace ucb_impl
using namespace ucb_impl;