diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-20 16:40:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-20 16:40:24 +0300 |
commit | 1e9b7c519953c73c6e5ca4ce2169eb674267c115 (patch) | |
tree | 5e331bef424935c0f6d2a2291eb189cd50f68a3d /src/particlecontainer.cpp | |
parent | c63923c39572655f3d8e826b0fb2fd3ed253ae7f (diff) | |
download | plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.tar.gz plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.tar.bz2 plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.tar.xz plus-1e9b7c519953c73c6e5ca4ce2169eb674267c115.zip |
fix style in other files.
Diffstat (limited to 'src/particlecontainer.cpp')
-rw-r--r-- | src/particlecontainer.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/particlecontainer.cpp b/src/particlecontainer.cpp index efab44619..26f7b5403 100644 --- a/src/particlecontainer.cpp +++ b/src/particlecontainer.cpp @@ -62,7 +62,8 @@ void ParticleContainer::moveTo(const float x, const float y) ParticleList::ParticleList(ParticleContainer *const parent, const bool delParent) : - ParticleContainer(parent, delParent) + ParticleContainer(parent, delParent), + mElements() {} ParticleList::~ParticleList() @@ -129,7 +130,8 @@ void ParticleList::moveTo(const float x, const float y) ParticleVector::ParticleVector(ParticleContainer *const parent, const bool delParent) : - ParticleContainer(parent, delParent) + ParticleContainer(parent, delParent), + mIndexedElements() {} ParticleVector::~ParticleVector() |