summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Le Grand <Armin.Le.Grand@cib.de>2018-01-28 12:19:00 +0100
committerArmin Le Grand <Armin.Le.Grand@cib.de>2018-01-29 10:16:56 +0100
commit75802ae40ae67737ae9e4f1a38434e0587affff6 (patch)
tree3858ab9d33bab9d57a0e7f37e2bafcb4eea4460a
parent753b35b27e3657db39f5d398a733879ef23b7c51 (diff)
BorderlineFix: Corrected wrong indexing in Array initialization
Change-Id: I4222ef1c82620a05cea9f6db1a0664196cfb3bd4
-rw-r--r--svx/source/table/viewcontactoftableobj.cxx2
1 files changed, 1 insertions, 1 deletions
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++)