summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2018-10-27 15:11:25 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2018-10-27 15:30:59 +0200
commit6a12a9e941283fe32d7714d4aee694c397996c3a (patch)
tree2c83c288b5c4fa23ec60cc4aad99f0fd7988f9aa /sw
parent2272b7e876dade3359b9f1fd1ae8a24e391bb8e5 (diff)
tdf#120703 PVS: V530 The return value of function is required to be utilized
Change-Id: Ifc170a45e25b3fd5b7f561cc50afb6452bb359bd Reviewed-on: https://gerrit.libreoffice.org/62420 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/text/txtcache.hxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/sw/source/core/text/txtcache.hxx b/sw/source/core/text/txtcache.hxx
index c42018c8da86..0fa90c35debb 100644
--- a/sw/source/core/text/txtcache.hxx
+++ b/sw/source/core/text/txtcache.hxx
@@ -37,7 +37,12 @@ public:
SwParaPortion *GetPara() { return pLine.get(); }
const SwParaPortion *GetPara() const { return pLine.get(); }
- void SetPara( SwParaPortion *pNew, bool bDelete ) { if (!bDelete) pLine.release(); pLine.reset( pNew ); }
+ void SetPara(SwParaPortion* pNew, bool bDelete)
+ {
+ if (!bDelete)
+ (void)pLine.release();
+ pLine.reset(pNew);
+ }
};
class SwTextLineAccess : public SwCacheAccess