From e0f49ff1fdb3813650bcce4eac1c2f7ec18942d0 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Fri, 28 Jun 2013 14:21:37 -0400 Subject: This is obviously a mistake, & caused Calc to crash on Ctrl-D. Change-Id: I85787366313e38ce0ff503c7677e4407c1e2e30e --- sc/source/core/data/column.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc') diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index 9f75ad8ad445..a224b6f4c8fe 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -1595,7 +1595,7 @@ public: void operator() (const sc::CellStoreType::value_type& aNode, size_t nOffset, size_t nDataSize) { - size_t nRow = aNode.position - nOffset; + size_t nRow = aNode.position + nOffset; switch (aNode.type) { @@ -1773,7 +1773,7 @@ public: void operator() (const sc::CellStoreType::value_type& aNode, size_t nOffset, size_t nDataSize) { - size_t nRow = aNode.position - nOffset; + size_t nRow = aNode.position + nOffset; switch (aNode.type) { -- cgit