summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-22 09:51:00 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-09-22 12:15:27 +0200
commit17ca11125f1639d87d31237af822767dd38d31e7 (patch)
tree650255b2d96ecb84b98909de3b30b6d21cfd4b33 /chart2
parent5a5bb1b02dca3960ba58c70e3b595fa678550604 (diff)
cid#1467075 silence Unchecked return value
Change-Id: I77809ff271004a216131f26a26696d5717877a8d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103145 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/dialogs/DialogModel.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/chart2/source/controller/dialogs/DialogModel.cxx b/chart2/source/controller/dialogs/DialogModel.cxx
index 6ee640a8ff3f..cb4bc4413f20 100644
--- a/chart2/source/controller/dialogs/DialogModel.cxx
+++ b/chart2/source/controller/dialogs/DialogModel.cxx
@@ -677,9 +677,11 @@ void DialogModel::detectArguments(
// Note: unused data is currently not supported in being passed to detectRangeSegmentation
if( m_xChartDocument.is())
- DataSourceHelper::detectRangeSegmentation(
+ {
+ (void)DataSourceHelper::detectRangeSegmentation(
Reference< frame::XModel >( m_xChartDocument, uno::UNO_QUERY_THROW ),
rOutRangeString, aSequenceMapping, rOutUseColumns, rOutFirstCellAsLabel, rOutHasCategories );
+ }
}
catch( const uno::Exception & )
{