summaryrefslogtreecommitdiffstats
path: root/pokemod/Move.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-08-02 18:49:43 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-08-02 18:49:43 +0000
commit63417b1c5057d22bd853e92cd3a25aa812b8d917 (patch)
treeaf1651766457c28d90b7b710be61048c0b0b034b /pokemod/Move.cpp
parent9fea55f75252462c1efbc90372ace45092fe6aca (diff)
downloadsigen-63417b1c5057d22bd853e92cd3a25aa812b8d917.tar.gz
sigen-63417b1c5057d22bd853e92cd3a25aa812b8d917.tar.xz
sigen-63417b1c5057d22bd853e92cd3a25aa812b8d917.zip
[ADD] Added XMLGUI file for pokemodr
[FIX] Pokemodr is now a KXmlGuiWindow (working on KatePart fixes) [FIX] Started Doxygen stuff [FIX] Object names of Pokemod classes are now determined using metaObject [FIX] Updated to use KDE 4.1 git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@232 6ecfd1a5-f3ed-3746-8530-beee90d26b22
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);