[Libreoffice-commits] core.git: sc/source
Kohei Yoshida
kohei.yoshida at gmail.com
Sat Jul 27 13:34:56 PDT 2013
sc/source/core/tool/interpr1.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 8b96cfd6caedbad7b3b79e57421a834f18c5c511
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date: Sat Jul 27 16:33:00 2013 -0400
fdo#61201: Don't forget to calculate row offset for external single ref.
Change-Id: Ie3dbf2eeba98a60aa2426b1db35ac885102d3821
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx
index a18a42d..4a48495 100644
--- a/sc/source/core/tool/interpr1.cxx
+++ b/sc/source/core/tool/interpr1.cxx
@@ -7454,6 +7454,7 @@ void ScInterpreter::ScOffset()
nCol1 = (SCCOL)((long)nCol1+nColPlus);
nRow1 = (SCROW)((long)nRow1+nRowPlus);
nCol2 = (SCCOL)((long)nCol1+nColNew-1);
+ nRow2 = (SCROW)((long)nRow1+nRowNew-1);
nTab2 = nTab1;
if (!ValidCol(nCol1) || !ValidRow(nRow1) ||
!ValidCol(nCol2) || !ValidRow(nRow2))
More information about the Libreoffice-commits
mailing list