Kaydet (Commit) 1fcc3050 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

fdo#80846: Get the parameter order right.

It's column, row, tab in this order, not tab, column row.

Change-Id: I32e69a403feaf18532c7ac241fa2a98fc65a4ba7
üst 2ef608aa
......@@ -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);
};
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment