Kaydet (Commit) e74ddb13 authored tarafından Julien Nabet's avatar Julien Nabet

cppcheck: Prefer prefix ++/-- operators

Change-Id: I3b0f66ad96813b064d61ea8b2ed6f2c383a11390
üst 36efd0f9
......@@ -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())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment