Blame SOURCES/0071-fdo-80846-Get-the-parameter-order-right.patch

f085be
From b50f1343fb51baf244761c424f3bb64be8125e42 Mon Sep 17 00:00:00 2001
f085be
From: Kohei Yoshida <kohei.yoshida@collabora.com>
f085be
Date: Tue, 29 Jul 2014 17:19:28 -0400
f085be
Subject: [PATCH 071/137] fdo#80846: Get the parameter order right.
f085be
f085be
It's column, row, tab in this order, not tab, column row.
f085be
f085be
Change-Id: I32e69a403feaf18532c7ac241fa2a98fc65a4ba7
f085be
(cherry picked from commit 1fcc30503549b47046c84333af542ed739f685ba)
f085be
Reviewed-on: https://gerrit.libreoffice.org/10633
f085be
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
f085be
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
f085be
---
f085be
 sc/source/ui/undo/undobase.cxx | 2 +-
f085be
 1 file changed, 1 insertion(+), 1 deletion(-)
f085be
f085be
diff --git a/sc/source/ui/undo/undobase.cxx b/sc/source/ui/undo/undobase.cxx
f085be
index 6342910..bc7a5e3 100644
f085be
--- a/sc/source/ui/undo/undobase.cxx
f085be
+++ b/sc/source/ui/undo/undobase.cxx
f085be
@@ -170,7 +170,7 @@ public:
f085be
         if (!bVal)
f085be
             return;
f085be
 
f085be
-        ScRange aRange(mnCurTab, mnCurCol, nRow1, mnCurTab, mnCurCol, nRow2);
f085be
+        ScRange aRange(mnCurCol, nRow1, mnCurTab, mnCurCol, nRow2, mnCurTab);
f085be
         mrDoc.BroadcastCells(aRange, SC_HINT_DATACHANGED);
f085be
     };
f085be
 };
f085be
-- 
f085be
1.9.3
f085be