summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptablelayout.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-27 15:28:23 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-27 15:30:58 +0200
commitde6d87c1ba18ecf20ec9ea5a405030e626ab544a (patch)
tree0e68e7cb8cef8ec9c1102ac0a5b00529e5cbdba1 /lotuswordpro/source/filter/lwptablelayout.cxx
parentMore loplugin:simplifybool (diff)
downloadcore-de6d87c1ba18ecf20ec9ea5a405030e626ab544a.tar.gz
core-de6d87c1ba18ecf20ec9ea5a405030e626ab544a.zip
More loplugin:simplifybool
Change-Id: I1ed1841c7cfbf69abfc8ba19cca348077da7b6d1
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);