summaryrefslogtreecommitdiffstats
path: root/pacman-c++/actor.cpp
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-06 14:32:09 +0200
committermanuel <manuel@mausz.at>2011-04-06 14:32:09 +0200
commit6dc8b50817fe5da8550c245db755f7014402c62a (patch)
treec2c657b7f7103c436003788d4f0b45758cb2dfd8 /pacman-c++/actor.cpp
parent3cdc77bc7d1da312a0c7ae9c734f6a33f1c49ecf (diff)
downloadfoop-6dc8b50817fe5da8550c245db755f7014402c62a.tar.gz
foop-6dc8b50817fe5da8550c245db755f7014402c62a.tar.bz2
foop-6dc8b50817fe5da8550c245db755f7014402c62a.zip
some minor cleanup
Diffstat (limited to 'pacman-c++/actor.cpp')
-rw-r--r--pacman-c++/actor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pacman-c++/actor.cpp b/pacman-c++/actor.cpp
index 4f28088..3794b63 100644
--- a/pacman-c++/actor.cpp
+++ b/pacman-c++/actor.cpp
@@ -11,7 +11,7 @@ static QVariant myBooleanInterpolator(const bool &start, const bool &end, qreal
11 return (progress == 1.0) ? end : start; 11 return (progress == 1.0) ? end : start;
12} 12}
13 13
14Actor::Actor(Color color, QGraphicsItem *parent) 14Actor::Actor(Color::Color color, QGraphicsItem *parent)
15 : PixmapItem(parent), m_color(color), m_direction(Actor::None) 15 : PixmapItem(parent), m_color(color), m_direction(Actor::None)
16{ 16{
17 m_pix = ":/" + QString("actor%1").arg(m_color); 17 m_pix = ":/" + QString("actor%1").arg(m_color);