Kaydet (Commit) 75802ae4 authored tarafından Armin Le Grand's avatar Armin Le Grand

BorderlineFix: Corrected wrong indexing in Array initialization

Change-Id: I4222ef1c82620a05cea9f6db1a0664196cfb3bd4
üst 753b35b2
...@@ -234,7 +234,7 @@ namespace sdr ...@@ -234,7 +234,7 @@ namespace sdr
svx::frame::Array aArray; svx::frame::Array aArray;
// initialize CellBorderArray for primitive creation // initialize CellBorderArray for primitive creation
aArray.Initialize(nRowCount, nColCount); aArray.Initialize(nColCount, nRowCount);
// create single primitives per cell // create single primitives per cell
for(aCellPos.mnRow = 0; aCellPos.mnRow < nRowCount; aCellPos.mnRow++) for(aCellPos.mnRow = 0; aCellPos.mnRow < nRowCount; aCellPos.mnRow++)
......
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