diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-08-16 12:10:31 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-08-16 13:41:57 +0200 |
commit | e74ddb13c5ea0431058f3bc3a76ad24c9b0cb140 (patch) | |
tree | fb5976d499f357cc7899ee3e9b41226befc730b2 /chart2 | |
parent | 36efd0f9c7e4ce6217c981fc439274a036bb02c1 (diff) |
cppcheck: Prefer prefix ++/-- operators
Change-Id: I3b0f66ad96813b064d61ea8b2ed6f2c383a11390
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/view/charttypes/GL3DBarChart.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/view/charttypes/GL3DBarChart.cxx b/chart2/source/view/charttypes/GL3DBarChart.cxx index 0299b9284ca5..8f9d8ecc0376 100644 --- a/chart2/source/view/charttypes/GL3DBarChart.cxx +++ b/chart2/source/view/charttypes/GL3DBarChart.cxx @@ -1011,7 +1011,7 @@ void GL3DBarChart::updateClickEvent() { std::list<float>& aList = maBarHistory[mSelectBarId]; sal_uInt32 idex = 0; - for (std::list<float>::iterator it = aList.begin();it != aList.end();it++) + for (std::list<float>::iterator it = aList.begin();it != aList.end();++it) { OUString aBarValue; if (idex + 1 == aList.size()) |