diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/docx/swdocxreader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/docx/swdocxreader.cxx b/sw/source/filter/docx/swdocxreader.cxx index 501b0e567a18..bba7dd1ff723 100644 --- a/sw/source/filter/docx/swdocxreader.cxx +++ b/sw/source/filter/docx/swdocxreader.cxx @@ -151,7 +151,7 @@ bool SwDOCXReader::MakeEntries( SwDoc *pD, SwTextBlocks &rBlocks ) if( rIdx.GetNode().GetTextNode() && rIdx.GetNode().GetTextNode()->GetText().isEmpty() ) rIdx = aStart.GetNode().EndOfSectionIndex() - 2; - if( ( nullptr == ( pCNd = rIdx.GetNode().GetContentNode() ) ) ) + if( nullptr == ( pCNd = rIdx.GetNode().GetContentNode() ) ) { ++rIdx; pCNd = pD->GetNodes().MakeTextNode( rIdx, pColl ); |