summaryrefslogtreecommitdiff
path: root/src/particle/rotationalparticle.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-18 18:42:51 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:21 +0300
commit2033ce76a8fba2148bc034d16e1d226bc757c47f (patch)
tree08a53fde19959fc72c09c42b457f63d63aba291d /src/particle/rotationalparticle.h
parente441e9e40d27930f3533ffecfa2a48e4fd312f4c (diff)
downloadplus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.gz
plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.bz2
plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.xz
plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.zip
remove virtual methos call from particle constructor.
Diffstat (limited to 'src/particle/rotationalparticle.h')
-rw-r--r--src/particle/rotationalparticle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/particle/rotationalparticle.h b/src/particle/rotationalparticle.h
index a32decb72..6f07f51d5 100644
--- a/src/particle/rotationalparticle.h
+++ b/src/particle/rotationalparticle.h
@@ -34,9 +34,9 @@ class SimpleAnimation;
class RotationalParticle final : public ImageParticle
{
public:
- RotationalParticle(Map *const map, Animation *const animation);
+ RotationalParticle(Animation *const animation);
- RotationalParticle(Map *const map, const XmlNodePtr animationNode,
+ RotationalParticle(const XmlNodePtr animationNode,
const std::string& dyePalettes = std::string());
A_DELETE_COPY(RotationalParticle)