diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-09-07 03:01:46 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-09-07 03:01:46 +0000 |
| commit | 48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69 (patch) | |
| tree | 0c8e09eec981de47c5aa0f49601484bcaabbbbc7 /sigscript/EggGroupWrapper.cpp | |
| parent | fef5e045060aff28477751c4115d346a95425c0c (diff) | |
| download | sigen-48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69.tar.gz sigen-48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69.tar.xz sigen-48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69.zip | |
[FIX] Spelling mistake in sigscript classes
[FIX] Fixed a bug in the Growth enum in Species
[FIX] Arena functionality is getting there
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@252 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigscript/EggGroupWrapper.cpp')
| -rw-r--r-- | sigscript/EggGroupWrapper.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sigscript/EggGroupWrapper.cpp b/sigscript/EggGroupWrapper.cpp index 7ed1ddf2..fee20d84 100644 --- a/sigscript/EggGroupWrapper.cpp +++ b/sigscript/EggGroupWrapper.cpp @@ -23,9 +23,9 @@ Sigscript::EggGroupWrapper* Sigscript::EggGroupWrapper::create(const Sigmod::EggGroup* eggGroup, SigmodWrapper* parent) { - if (!m_instances.contains(Signiture(parent, eggGroup->id()))) - m_instances[Signiture(parent, eggGroup->id())] = new EggGroupWrapper(eggGroup, parent); - return qobject_cast<EggGroupWrapper*>(m_instances[Signiture(parent, eggGroup->id())]); + if (!m_instances.contains(Signature(parent, eggGroup->id()))) + m_instances[Signature(parent, eggGroup->id())] = new EggGroupWrapper(eggGroup, parent); + return qobject_cast<EggGroupWrapper*>(m_instances[Signature(parent, eggGroup->id())]); } Sigscript::EggGroupWrapper::EggGroupWrapper(const Sigmod::EggGroup* eggGroup, SigmodWrapper* parent) : |
