summaryrefslogtreecommitdiffstats
path: root/pokemod/CoinList.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-04-17 23:34:36 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-04-17 23:34:36 +0000
commit6679f5cffa9d35a23b76605ddfbf3257f882b6ee (patch)
treec8e41854a60b64e8569939bca6b827807175ef9a /pokemod/CoinList.h
parent05980e883719b1c8ebde1bd2fcbf4f8c16df7ad6 (diff)
downloadsigen-6679f5cffa9d35a23b76605ddfbf3257f882b6ee.tar.gz
sigen-6679f5cffa9d35a23b76605ddfbf3257f882b6ee.tar.xz
sigen-6679f5cffa9d35a23b76605ddfbf3257f882b6ee.zip
[FIX] Frac -> Fraction
[FIX] ImageCache and Ini removed [FIX] Fraction/Point widgets moved to pokemodr [FIX] Copy ctors made for pokemod classes [FIX] Ctors in pokemod fixed [FIX] Copyright headers fixed in pokemodr [FIX] PokeModr updated to new API and fixed in some places git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@99 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/CoinList.h')
-rw-r--r--pokemod/CoinList.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/pokemod/CoinList.h b/pokemod/CoinList.h
index a0097571..e9fd1752 100644
--- a/pokemod/CoinList.h
+++ b/pokemod/CoinList.h
@@ -35,9 +35,10 @@ class Pokemod;
class CoinList : public Object
{
public:
+ CoinList(const CoinList& coinList);
CoinList(const Pokemod* pokemod, const int id);
- CoinList(const Pokemod* pokemod, const CoinList& coinList, const int id);
- CoinList(const Pokemod* pokemod, const QDomElement& xml, const int id = INT_MAX);
+ CoinList(const CoinList& coinList, const Pokemod* pokemod, const int id);
+ CoinList(const QDomElement& xml, const Pokemod* pokemod, const int id = INT_MAX);
~CoinList();
void load(const QDomElement& xml, int id = INT_MAX);