summaryrefslogtreecommitdiffstats
path: root/sigscript/CoinListWrapper.cpp
diff options
context:
space:
mode:
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)
{