diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-07-29 17:19:28 -0400 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-07-30 08:15:21 +0000 |
commit | ea67eca2ab1e3780551eadfa2d694bbd528d8ce4 (patch) | |
tree | ff632494f6c5a88327f8e6fcfc6a27600a047a12 | |
parent | a1f8f6055590330ed36fdae9d9a520d053b80923 (diff) |
fdo#80846: Get the parameter order right.
It's column, row, tab in this order, not tab, column row.
Change-Id: I32e69a403feaf18532c7ac241fa2a98fc65a4ba7
(cherry picked from commit 1fcc30503549b47046c84333af542ed739f685ba)
Reviewed-on: https://gerrit.libreoffice.org/10632
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r-- | sc/source/ui/undo/undobase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/undo/undobase.cxx b/sc/source/ui/undo/undobase.cxx index 8a0ea2d9e0cc..e723c11929ad 100644 --- a/sc/source/ui/undo/undobase.cxx +++ b/sc/source/ui/undo/undobase.cxx @@ -173,7 +173,7 @@ public: if (!bVal) return; - ScRange aRange(mnCurTab, mnCurCol, nRow1, mnCurTab, mnCurCol, nRow2); + ScRange aRange(mnCurCol, nRow1, mnCurTab, mnCurCol, nRow2, mnCurTab); mrDoc.BroadcastCells(aRange, SC_HINT_DATACHANGED); }; }; |