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/CoinListObjectWrapper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sigscript/CoinListObjectWrapper.cpp') diff --git a/sigscript/CoinListObjectWrapper.cpp b/sigscript/CoinListObjectWrapper.cpp index a445fe09..b0b0f0c6 100644 --- a/sigscript/CoinListObjectWrapper.cpp +++ b/sigscript/CoinListObjectWrapper.cpp @@ -24,9 +24,9 @@ Sigscript::CoinListObjectWrapper* Sigscript::CoinListObjectWrapper::create(const Sigmod::CoinListObject* object, CoinListWrapper* parent) { - if (!m_instances.contains(Signiture(parent, object->id()))) - m_instances[Signiture(parent, object->id())] = new CoinListObjectWrapper(object, parent); - return qobject_cast(m_instances[Signiture(parent, object->id())]); + if (!m_instances.contains(Signature(parent, object->id()))) + m_instances[Signature(parent, object->id())] = new CoinListObjectWrapper(object, parent); + return qobject_cast(m_instances[Signature(parent, object->id())]); } Sigscript::CoinListObjectWrapper::CoinListObjectWrapper(const Sigmod::CoinListObject* object, CoinListWrapper* parent) : -- cgit