summaryrefslogtreecommitdiff
path: root/src/particle/animationparticle.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-19 18:54:32 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 18:54:32 +0300
commiteff128d7019ea0cd137a5fff6cc67825f90c4e1b (patch)
treed56835cd042f2794b4c5182cedd5eefb96099d5a /src/particle/animationparticle.h
parent6a79c4cc085f5cc7fea8a7b383744a40f3ccea6c (diff)
downloadplus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.gz
plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.bz2
plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.tar.xz
plus-eff128d7019ea0cd137a5fff6cc67825f90c4e1b.zip
fix code style
Diffstat (limited to 'src/particle/animationparticle.h')
-rw-r--r--src/particle/animationparticle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/particle/animationparticle.h b/src/particle/animationparticle.h
index eb864ea86..55f314994 100644
--- a/src/particle/animationparticle.h
+++ b/src/particle/animationparticle.h
@@ -28,16 +28,16 @@
#include "utils/xml.h"
class Animation;
-class Map;
class SimpleAnimation;
class AnimationParticle final : public ImageParticle
{
public:
- AnimationParticle(Animation *const animation);
+ explicit AnimationParticle(Animation *const animation);
- AnimationParticle(XmlNodePtr const animationNode,
- const std::string& dyePalettes = std::string());
+ explicit AnimationParticle(XmlNodePtr const animationNode,
+ const std::string& dyePalettes
+ = std::string());
A_DELETE_COPY(AnimationParticle)