| commit | eea1657b8f0714ec7ab1d38b0b836b70de623513 | [log] [tgz] |
|---|---|---|
| author | Armin Le Grand <Armin.Le.Grand@cib.de> | Sun Jan 28 12:19:00 2018 +0100 |
| committer | Armin Le Grand <Armin.Le.Grand@cib.de> | Sun Jan 28 16:18:43 2018 +0100 |
| tree | 88dbb156e9e42e0a016867d6520f188382647771 | |
| parent | e589d8d71a0c11bf3c982633b6da4ff181bd7fd0 [diff] |
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 4a5741c..91b55bb 100644 --- a/svx/source/table/viewcontactoftableobj.cxx +++ b/svx/source/table/viewcontactoftableobj.cxx
@@ -234,7 +234,7 @@ 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++)