[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - sc/source

Kohei Yoshida kohei.yoshida at collabora.com
Wed Jul 30 01:15:48 PDT 2014


 sc/source/ui/undo/undobase.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ea67eca2ab1e3780551eadfa2d694bbd528d8ce4
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date:   Tue Jul 29 17:19:28 2014 -0400

    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 at googlemail.com>
    Tested-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/sc/source/ui/undo/undobase.cxx b/sc/source/ui/undo/undobase.cxx
index 8a0ea2d..e723c11 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);
     };
 };


More information about the Libreoffice-commits mailing list