chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit bc87d5cf6278c2e2803538fec6ea710613cc963b Author: Caolán McNamara <[email protected]> AuthorDate: Sun Sep 20 11:38:47 2020 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Sun Sep 20 13:55:08 2020 +0200 cid#1466912 silence Unchecked return value Change-Id: I5d8ef4a52f0aeef9012445a382aa472bd69ec925 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103069 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx b/chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx index 48a448edfc50..9fc30c823a79 100644 --- a/chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx +++ b/chart2/source/controller/chartapiwrapper/ChartDataWrapper.cxx @@ -626,7 +626,7 @@ void ChartDataWrapper::applyData( lcl_Operator& rDataOperator ) bool bHasCategories = true; uno::Sequence< sal_Int32 > aSequenceMapping; - DataSourceHelper::detectRangeSegmentation( + (void)DataSourceHelper::detectRangeSegmentation( xChartDoc, aRangeString, aSequenceMapping, bUseColumns, bFirstCellAsLabel, bHasCategories ); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
