summaryrefslogtreecommitdiff
path: root/sc/source/ui
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-07-29 17:19:28 -0400
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-07-30 08:14:52 +0000
commitb50f1343fb51baf244761c424f3bb64be8125e42 (patch)
tree98c90e78788377287194bbbe2695cfbd32ed02e5 /sc/source/ui
parentca8a6d4ff366f0ad7c2da6b76f76f624c593592f (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>
Diffstat (limited to 'sc/source/ui')
-rw-r--r--sc/source/ui/undo/undobase.cxx2
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);
};
};