diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-09-08 09:35:58 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-09-12 01:45:28 +0200 |
commit | 0836415ffd592ecf932a1208f2faba70c2d4988d (patch) | |
tree | cb990984378a82ead180be2419a916e10890c90d /editeng | |
parent | ec1de2a4ff284f9f1d2e8147af91a8a1588652a1 (diff) |
coverity#703951 unchecked return value
Change-Id: Id9a3c639bd778552b176c19b7574a9d9786ffebc
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/outliner/outliner.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx index 311f88fcf770..9791dcbf81ba 100644 --- a/editeng/source/outliner/outliner.cxx +++ b/editeng/source/outliner/outliner.cxx @@ -1273,7 +1273,7 @@ bool Outliner::ImpCanIndentSelectedPages( OutlinerView* pCurView ) if ( nDepthChangedHdlPrevDepth == 1 ) // is the only page return false; else - pCurView->ImpCalcSelectedPages( false ); // without the first + (void)pCurView->ImpCalcSelectedPages( false ); // without the first } return IndentingPagesHdl( pCurView ); } |