diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-07-29 17:19:28 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-07-29 17:21:33 -0400 |
commit | 1fcc30503549b47046c84333af542ed739f685ba (patch) | |
tree | 734f286c5b3d9277bde7d11acf4e90d756117004 | |
parent | 2ef608aa35ee50a271ba817ef1538e663b4e0cae (diff) |
fdo#80846: Get the parameter order right.
It's column, row, tab in this order, not tab, column row.
Change-Id: I32e69a403feaf18532c7ac241fa2a98fc65a4ba7
-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 dc7efd49756e..2e244ec1a9be 100644 --- a/sc/source/ui/undo/undobase.cxx +++ b/sc/source/ui/undo/undobase.cxx @@ -172,7 +172,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); }; }; |