summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxattributeoutput.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 13:13:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 19:43:11 +0200
commit52c2cf22aa78ee886ee447a2629332e1e6f6c611 (patch)
tree9b91680232117080901a968a90d6bb33c2becda9 /sw/source/filter/ww8/docxattributeoutput.cxx
parentb81432a23c900329ece07854fd06a322225a97c1 (diff)
loplugin:simplifybool in sw
Change-Id: Ib842d5a768806fc41a66802908acc8679cf7a985 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95107 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/ww8/docxattributeoutput.cxx')
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index f5551f90ce57..ecdc1860d6e3 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -6884,7 +6884,7 @@ void DocxAttributeOutput::NumberingLevel( sal_uInt8 nLevel,
// start with the nStart value. Do not write w:start if Numbered Lists
// starts from zero.As it's an optional parameter.
// refer ECMA 376 Second edition Part-1
- if(!(0 == nLevel && 0 == nStart))
+ if(0 != nLevel || 0 != nStart)
{
m_pSerializer->singleElementNS( XML_w, XML_start,
FSNS( XML_w, XML_val ), OString::number(nStart) );