svx/source/table/viewcontactoftableobj.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit b1df0172fe035e8c26b529b95988579253042a8a Author: Armin Le Grand <[email protected]> Date: Sun Jan 28 12:19:00 2018 +0100 BorderlineFix: Corrected wrong indexing in Array initialization Change-Id: I4222ef1c82620a05cea9f6db1a0664196cfb3bd4 diff --git a/svx/source/table/viewcontactoftableobj.cxx b/svx/source/table/viewcontactoftableobj.cxx index 4a5741cd0545..91b55bb5e8b4 100644 --- a/svx/source/table/viewcontactoftableobj.cxx +++ b/svx/source/table/viewcontactoftableobj.cxx @@ -234,7 +234,7 @@ namespace sdr svx::frame::Array aArray; // initialize CellBorderArray for primitive creation - aArray.Initialize(nRowCount, nColCount); + aArray.Initialize(nColCount, nRowCount); // create single primitives per cell for(aCellPos.mnRow = 0; aCellPos.mnRow < nRowCount; aCellPos.mnRow++) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
