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:14:52 +0000 |
commit | b50f1343fb51baf244761c424f3bb64be8125e42 (patch) | |
tree | 98c90e78788377287194bbbe2695cfbd32ed02e5 | |
parent | ca8a6d4ff366f0ad7c2da6b76f76f624c593592f (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/10633
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 634291058482..bc7a5e38a4e9 100644 --- a/sc/source/ui/undo/undobase.cxx +++ b/sc/source/ui/undo/undobase.cxx @@ -170,7 +170,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); }; }; |