diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-10 15:57:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-10 15:58:27 +0000 |
commit | 10bac220a31f7f4f80bee440fa0f7292f0a5d54c (patch) | |
tree | a4a44d44c01ff44bd9761dd64f9c8b108eabf644 | |
parent | db40b5c71c9e5c1019fb6de0f0e5b39a39b37e1d (diff) |
there can be 0 columns
Change-Id: Ie367e88df7165d728015a1b3987b220a23203765
(cherry picked from commit 6857a386a4cfe4ddb42515cb00df5bd6648d0964)
-rw-r--r-- | lotuswordpro/source/filter/lwptablelayout.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwptablelayout.cxx b/lotuswordpro/source/filter/lwptablelayout.cxx index c3aabeede7a8..e73bbcdc991c 100644 --- a/lotuswordpro/source/filter/lwptablelayout.cxx +++ b/lotuswordpro/source/filter/lwptablelayout.cxx @@ -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]) |