Kaydet (Commit) 10bac220 authored tarafından Caolán McNamara's avatar Caolán McNamara

there can be 0 columns

Change-Id: Ie367e88df7165d728015a1b3987b220a23203765
(cherry picked from commit 6857a386)
üst db40b5c7
......@@ -584,7 +584,7 @@ void LwpTableLayout::RegisterColumns()
m_pColumns[nColId] = pColumnLayout;
if (!pColumnLayout->IsJustifiable())
{
pWidthCalculated[pColumnLayout->GetColumnID()] = sal_True;
pWidthCalculated[nColId] = sal_True;
dTableWidth -= pColumnLayout->GetWidth();
nJustifiableColumn --;
}
......@@ -594,7 +594,7 @@ void LwpTableLayout::RegisterColumns()
}
// if all columns are not justifiable, the rightmost column will be changed to justifiable
if(nJustifiableColumn == 0)
if (nJustifiableColumn == 0 && nCols != 0)
{
nJustifiableColumn ++;
if (m_pColumns[nCols - 1])
......
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