summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-04-15 11:30:23 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-04-15 11:33:40 -0400
commitd9b0b7d4918a32bca2f86468bf10e147211873cd (patch)
treeab6bf5a3bbd5636294831d50d6d0d40c8ce42bc5
parent38d7306d0645654a02cbb04be57b75d4c11e2266 (diff)
Properly initialize data members.
Change-Id: Iacd91b79ea8fadcc70c2ae63f61f649f33acfbef
-rw-r--r--sc/source/core/data/formulacell.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx
index 7bd078575775..ab703442fc2c 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -375,7 +375,8 @@ void adjustDBRange(ScToken* pToken, ScDocument& rNewDoc, const ScDocument* pOldD
}
-ScFormulaCellGroup::ScFormulaCellGroup()
+ScFormulaCellGroup::ScFormulaCellGroup() :
+ mnRefCount(0), mpDelta(NULL), mnStart(0), mnLength(0)
{
}