summaryrefslogtreecommitdiff
path: root/src/particle/particleengine.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-03-10 16:40:52 +0300
committerAndrei Karas <akaras@inbox.ru>2017-03-10 16:40:52 +0300
commit4df1e68047488ec00a264c076bb3222715f42295 (patch)
tree22ea99ebcd00a6c9d6da0729706b765a49085c5f /src/particle/particleengine.cpp
parentbfc5d7483c0a81409ebf08603f634e88b8db03f8 (diff)
downloadplus-4df1e68047488ec00a264c076bb3222715f42295.tar.gz
plus-4df1e68047488ec00a264c076bb3222715f42295.tar.bz2
plus-4df1e68047488ec00a264c076bb3222715f42295.tar.xz
plus-4df1e68047488ec00a264c076bb3222715f42295.zip
Fix new style issue detected by mplint.
new class() -> new class
Diffstat (limited to 'src/particle/particleengine.cpp')
-rw-r--r--src/particle/particleengine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/particle/particleengine.cpp b/src/particle/particleengine.cpp
index f4ac7f8d3..b63d1c53c 100644
--- a/src/particle/particleengine.cpp
+++ b/src/particle/particleengine.cpp
@@ -118,7 +118,7 @@ bool ParticleEngine::update() restrict2
Particle *ParticleEngine::createChild() restrict2
{
- Particle *const newParticle = new Particle();
+ Particle *const newParticle = new Particle;
newParticle->setMap(mMap);
mChildParticles.push_back(newParticle);
return newParticle;
@@ -190,7 +190,7 @@ Particle *ParticleEngine::addEffect(const std::string &restrict
// Other
else
{
- newParticle = new Particle();
+ newParticle = new Particle;
newParticle->setMap(mMap);
}