From b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 24 Feb 2009 16:18:17 -0500 Subject: Moved SigmodWrapper to GameWrapper --- sigscript/CoinListWrapper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sigscript/CoinListWrapper.cpp') diff --git a/sigscript/CoinListWrapper.cpp b/sigscript/CoinListWrapper.cpp index eafe7108..f2ee2cc2 100644 --- a/sigscript/CoinListWrapper.cpp +++ b/sigscript/CoinListWrapper.cpp @@ -20,12 +20,12 @@ // Sigscript includes #include "CoinListItemWrapper.h" -#include "SigmodWrapper.h" +#include "GameWrapper.h" // Sigmod includes #include -Sigscript::CoinListWrapper* Sigscript::CoinListWrapper::create(const Sigmod::CoinList* coinList, SigmodWrapper* parent) +Sigscript::CoinListWrapper* Sigscript::CoinListWrapper::create(const Sigmod::CoinList* coinList, GameWrapper* parent) { Signature sig = Signature(parent, Subsignature(coinList->className(), coinList->id())); if (!m_instances.contains(sig)) @@ -33,7 +33,7 @@ Sigscript::CoinListWrapper* Sigscript::CoinListWrapper::create(const Sigmod::Coi return qobject_cast(m_instances[sig]); } -Sigscript::CoinListWrapper::CoinListWrapper(const Sigmod::CoinList* coinList, SigmodWrapper* parent) : +Sigscript::CoinListWrapper::CoinListWrapper(const Sigmod::CoinList* coinList, GameWrapper* parent) : ObjectWrapper(coinList, parent), m_coinList(coinList) { -- cgit