summaryrefslogtreecommitdiffstats
path: root/sigscript/CoinListWrapper.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-24 16:18:17 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-24 16:18:17 -0500
commitb28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67 (patch)
tree01971661209ccb6d6844a096a5ea3d39baeabe68 /sigscript/CoinListWrapper.cpp
parentb6d07f0ca14256a42268e69190891c56bf978bd4 (diff)
downloadsigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.gz
sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.xz
sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.zip
Moved SigmodWrapper to GameWrapper
Diffstat (limited to 'sigscript/CoinListWrapper.cpp')
-rw-r--r--sigscript/CoinListWrapper.cpp6
1 files changed, 3 insertions, 3 deletions
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 <sigmod/CoinList.h>
-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<CoinListWrapper*>(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)
{