summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-06-21 14:23:06 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-06-24 16:51:39 -0400
commit9186ae043b7e8afa5730b9d70818360cdfef2201 (patch)
treee20126d3097d3f909bbc4b38564df11e20069f07 /sc
parent92a78a052efcb3122932894fb446c62733daad42 (diff)
Incorrect way to initialize a multi_type_vector.
Change-Id: I5db7923be8444db8a0cb1a6766f967d731776535
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 78dbe8142287..c85f914d8c51 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -1034,7 +1034,7 @@ public:
mrDestColumn(rDestColumn),
mrDestCells(rDestCells),
mrDestAttrs(rDestAttrs),
- maNewCells(0, nRow2 - nRow1 + 1),
+ maNewCells(nRow2 - nRow1 + 1),
miNewCellsPos(maNewCells.begin()),
mnRowOffset(nRow1),
mnFunction(nFunction),