diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-10-04 21:11:33 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-10-04 21:45:14 -0500 |
commit | 2fc308b941667294650233e6b0abd7c8e282472f (patch) | |
tree | 90832e8d8e743393a763eccbb18a9799d55de86d /chart2 | |
parent | 0b7631bccb2a47ab71a0c1edbabe8a5892ff5f9c (diff) |
coverity#703928 Unchecked return value
Change-Id: I26ba62448796f1d80d2b4bbaf2499d08058c3add
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/main/ChartController_Properties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/controller/main/ChartController_Properties.cxx b/chart2/source/controller/main/ChartController_Properties.cxx index bfdd4b8056d1..ca3dfa1c1d3b 100644 --- a/chart2/source/controller/main/ChartController_Properties.cxx +++ b/chart2/source/controller/main/ChartController_Properties.cxx @@ -797,7 +797,7 @@ bool ChartController::executeDlg_ObjectProperties_withoutUndoGuard( if(pOutItemSet) { ControllerLockGuardUNO aCLGuard( getModel()); - pItemConverter->ApplyItemSet(*pOutItemSet); //model should be changed now + (void)pItemConverter->ApplyItemSet(*pOutItemSet); //model should be changed now bRet = true; } } |