summaryrefslogtreecommitdiffstats
path: root/pokemod/Move.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/Move.cpp')
-rw-r--r--pokemod/Move.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/pokemod/Move.cpp b/pokemod/Move.cpp
index 11387f62..28f99dad 100644
--- a/pokemod/Move.cpp
+++ b/pokemod/Move.cpp
@@ -26,13 +26,13 @@
#include <QtCore/QSet>
Pokemod::Move::Move(const Move& move) :
- Object("Move", move.parent(), move.id())
+ Object(move.parent(), move.id())
{
*this = move;
}
Pokemod::Move::Move(const Pokemod* parent, const int id) :
- Object("Move", parent, id),
+ Object(parent, id),
m_name(""),
m_accuracy(1, 1),
m_power(0),
@@ -48,13 +48,13 @@ Pokemod::Move::Move(const Pokemod* parent, const int id) :
}
Pokemod::Move::Move(const Move& move, const Pokemod* parent, const int id) :
- Object("Move", parent, id)
+ Object(parent, id)
{
*this = move;
}
Pokemod::Move::Move(const QDomElement& xml, const Pokemod* parent, const int id) :
- Object("Move", parent, id)
+ Object(parent, id)
{
LOAD_ID();
load(xml);