diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 12:05:45 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 12:06:04 +0100 |
commit | e16614f440aae289316531113050c6b70d194b7a (patch) | |
tree | d50b409362f3bd1a49e15d10ad486ac4dcc5d8e4 | |
parent | 829a2f9b1f978db92d7cf50a30feead5128bce9f (diff) |
loplugin:literaltoboolconversion
Change-Id: Ibb9b21806e73ddb0071e906fd200efce515055a0
-rw-r--r-- | sw/source/core/doc/docnum.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/docnum.cxx b/sw/source/core/doc/docnum.cxx index b9078318241a..9689f864cd33 100644 --- a/sw/source/core/doc/docnum.cxx +++ b/sw/source/core/doc/docnum.cxx @@ -2083,7 +2083,7 @@ bool SwDoc::NumOrNoNum( const SwNodeIndex& rIdx, sal_Bool bDel ) GetIDocumentUndoRedo().AppendUndo(pUndo); } } - else if (bDel && pTxtNd->GetNumRule(sal_False) && + else if (bDel && pTxtNd->GetNumRule(false) && pTxtNd->GetActualListLevel() >= 0 && pTxtNd->GetActualListLevel() < MAXLEVEL) { |