diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-11-03 05:14:45 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-11-03 05:14:45 +0100 |
commit | d9473f25380c627966b4406cc4cdfaafcf44bc37 (patch) | |
tree | d88ed9c8c8d9702f8c55390ca115aba338010e2d /chart2 | |
parent | 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae (diff) |
coverity#1242524, arguments in wrong order
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx b/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx index fba08dfe9e8b..6fde3c4dd16b 100644 --- a/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx +++ b/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx @@ -1262,7 +1262,7 @@ void WrappedDataRowSourceProperty::setPropertyValue( const Any& rOuterValue, con { aSequenceMapping.realloc(0); DataSourceHelper::setRangeSegmentation( - m_spChart2ModelContact->getChartModel(), aSequenceMapping, bNewUseColumns , bHasCategories, bFirstCellAsLabel ); + m_spChart2ModelContact->getChartModel(), aSequenceMapping, bNewUseColumns , bFirstCellAsLabel , bHasCategories); } } } |