summaryrefslogtreecommitdiff
path: root/src/particlecontainer.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-01-15 01:07:47 +0200
committerAndrei Karas <akaras@inbox.ru>2011-01-15 02:05:50 +0200
commite2150d04662a4ba8b5304dabcc74be0bacded5b7 (patch)
treecbeb05c2f056a7d5ac4a08e7b80799b5cfd4785b /src/particlecontainer.cpp
parentedda37acb9d66f2751ef712c83dced62428fa685 (diff)
downloadplus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.tar.gz
plus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.tar.bz2
plus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.tar.xz
plus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.zip
Fix code style, apply some fixes after checking with cppcheck from git.
Diffstat (limited to 'src/particlecontainer.cpp')
-rw-r--r--src/particlecontainer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/particlecontainer.cpp b/src/particlecontainer.cpp
index 68e5f64e4..efb11ab8b 100644
--- a/src/particlecontainer.cpp
+++ b/src/particlecontainer.cpp
@@ -85,7 +85,7 @@ void ParticleList::removeLocally(Particle *particle)
}
else
{
- it++;
+ ++it;
}
}
}
@@ -93,7 +93,7 @@ void ParticleList::removeLocally(Particle *particle)
void ParticleList::clearLocally()
{
for (std::list<Particle *>::iterator it = mElements.begin();
- it != mElements.end(); it++)
+ it != mElements.end(); ++it)
{
(*it)->kill();
}
@@ -116,7 +116,7 @@ void ParticleList::moveTo(float x, float y)
}
else
{
- it++;
+ ++it;
}
}
}
@@ -172,7 +172,7 @@ void ParticleVector::moveTo(float x, float y)
ParticleContainer::moveTo(x, y);
for (std::vector<Particle *>::iterator it = mIndexedElements.begin();
- it != mIndexedElements.end(); it++)
+ it != mIndexedElements.end(); ++it)
{
if (*it)
{