Kaydet (Commit) 11e1b253 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

coverity#735384: fix copy&paste error

Change-Id: If9ecdee058780e7ae518aefeebb74a6d62c4b6f9
üst a20116d4
......@@ -3666,7 +3666,7 @@ void PPTWriter::ImplCreateTable( uno::Reference< drawing::XShape >& rXShape, Esc
for ( sal_Int32 nRowSpan = 1; nRowSpan < xCell->getRowSpan(); nRowSpan++ )
{
sal_uInt32 nR = nRowSpan + nRow;
if ( nR < aColumns.size() )
if ( nR < aRows.size() )
nBottom += aRows[ nR ].second;
else
nBottom = maRect.Bottom();
......
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