diff options
Diffstat (limited to 'pokemod/Move.cpp')
| -rw-r--r-- | pokemod/Move.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pokemod/Move.cpp b/pokemod/Move.cpp index de1e4958..4eecccb1 100644 --- a/pokemod/Move.cpp +++ b/pokemod/Move.cpp @@ -24,13 +24,12 @@ #include <QListIterator> #include <QMap> #include <QMapIterator> -#include <QStringList> #include <QStringListIterator> #include "Pokemod.h" #include "Move.h" -const char* PokeMod::Move::TargetStr[PokeMod::Move::T_End] = {"Player", "Enemy", "Both", "Random"}; -const char* PokeMod::Move::ChoiceStr[PokeMod::Move::C_End] = {"Player", "Enemy", "Random"}; +const QStringList PokeMod::Move::TargetStr = QStringList() << "Player" << "Enemy" << "Both" << "Random"; +const QStringList PokeMod::Move::ChoiceStr = QStringList() << "Player" << "Enemy" << "Random"; PokeMod::Move::Move(const Pokemod& par, const unsigned _id) : Object(par, _id), |
