summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwptablelayout.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwptablelayout.cxx')
-rw-r--r--lotuswordpro/source/filter/lwptablelayout.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwptablelayout.cxx b/lotuswordpro/source/filter/lwptablelayout.cxx
index 99d8b1872a11..e2edf492bda4 100644
--- a/lotuswordpro/source/filter/lwptablelayout.cxx
+++ b/lotuswordpro/source/filter/lwptablelayout.cxx
@@ -1295,7 +1295,7 @@ void LwpTableLayout::SplitConflictCells()
continue;
}
pRowLayout= iter1->second;
- if (pRowLayout->GetMergeCellFlag() == false)
+ if (!pRowLayout->GetMergeCellFlag())
{
i++;
continue;
@@ -1310,7 +1310,7 @@ void LwpTableLayout::SplitConflictCells()
if (iter2 == m_RowsMap.end())
continue;
pEffectRow = iter2->second;
- if (pEffectRow->GetMergeCellFlag() == false)
+ if (!pEffectRow->GetMergeCellFlag())
continue;
else
pEffectRow->SetCellSplit(nEffectRows);