summaryrefslogtreecommitdiff
path: root/sc/inc/collect.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-27 10:53:44 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-27 10:53:44 +0000
commitd5a54ff324ed2be0e50a7031155ef72532144535 (patch)
tree81fda8eece1887238c39cfeb0b063872c983fa5e /sc/inc/collect.hxx
parente31dd421c639a08db0a1155e41cee15bac90eb51 (diff)
INTEGRATION: CWS calcwarnings (1.4.324); FILE MERGED
2006/12/06 13:34:12 nn 1.4.324.1: #i69284# warning-free: core, unxlngi6
Diffstat (limited to 'sc/inc/collect.hxx')
-rw-r--r--sc/inc/collect.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/sc/inc/collect.hxx b/sc/inc/collect.hxx
index 25a2e2160623..bcc6e1da2d57 100644
--- a/sc/inc/collect.hxx
+++ b/sc/inc/collect.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: collect.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 17:27:29 $
+ * last change: $Author: vg $ $Date: 2007-02-27 11:53:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -133,7 +133,7 @@ friend class StrCollection;
String aStr;
public:
StrData(const String& rStr) : aStr(rStr) {}
- StrData(const StrData& rData) :aStr(rData.aStr) {}
+ StrData(const StrData& rData) : DataObject(), aStr(rData.aStr) {}
virtual DataObject* Clone() const;
const String& GetString() const { return aStr; }
// SetString nur, wenn StrData nicht in StrCollection ist! !!!
@@ -178,7 +178,8 @@ public:
BOOL bAllStrings );
TypedStrData( const TypedStrData& rCpy )
- : aStrValue(rCpy.aStrValue),
+ : DataObject(),
+ aStrValue(rCpy.aStrValue),
nValue(rCpy.nValue),
nStrType(rCpy.nStrType) {}