From 48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 7 Sep 2008 03:01:46 +0000 Subject: [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 --- sigscript/MapWarpWrapper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sigscript/MapWarpWrapper.cpp') diff --git a/sigscript/MapWarpWrapper.cpp b/sigscript/MapWarpWrapper.cpp index fe6bdd42..32e1c14d 100644 --- a/sigscript/MapWarpWrapper.cpp +++ b/sigscript/MapWarpWrapper.cpp @@ -24,9 +24,9 @@ Sigscript::MapWarpWrapper* Sigscript::MapWarpWrapper::create(const Sigmod::MapWarp* warp, MapWrapper* parent) { - if (!m_instances.contains(Signiture(parent, warp->id()))) - m_instances[Signiture(parent, warp->id())] = new MapWarpWrapper(warp, parent); - return qobject_cast(m_instances[Signiture(parent, warp->id())]); + if (!m_instances.contains(Signature(parent, warp->id()))) + m_instances[Signature(parent, warp->id())] = new MapWarpWrapper(warp, parent); + return qobject_cast(m_instances[Signature(parent, warp->id())]); } Sigscript::MapWarpWrapper::MapWarpWrapper(const Sigmod::MapWarp* warp, MapWrapper* parent) : -- cgit