summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-10 09:41:23 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-10 11:36:25 +0000
commit3ae74fb26d1b7d5af88aa90ac78551c7d48b7935 (patch)
tree5acf947e2413586e24afcd2868f57dd27a1f6239 /sw
parent04c2063a507c9dbefe195ee27671261b9de40c2b (diff)
coverity#1103650 Unchecked return value
Change-Id: I8c674269174a9e17d2195d1014f67aa7a81ba138
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/edit/autofmt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/edit/autofmt.cxx b/sw/source/core/edit/autofmt.cxx
index 1043dcf30acc..3fa6430db551 100644
--- a/sw/source/core/edit/autofmt.cxx
+++ b/sw/source/core/edit/autofmt.cxx
@@ -1760,7 +1760,7 @@ void SwAutoFormat::BuildHeadLine( sal_uInt16 nLvl )
DelPrevPara();
DeleteCurrentParagraph( true, false );
- DeleteCurNxtPara( OUString() );
+ (void)DeleteCurNxtPara( OUString() );
m_aDelPam.DeleteMark();
m_aDelPam.GetPoint()->nNode = m_aNdIdx.GetIndex() + 1;