diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-02-24 16:18:17 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-02-24 16:18:17 -0500 |
| commit | b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67 (patch) | |
| tree | 01971661209ccb6d6844a096a5ea3d39baeabe68 /sigscript/CoinListWrapper.h | |
| parent | b6d07f0ca14256a42268e69190891c56bf978bd4 (diff) | |
| download | sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.gz sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.xz sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.zip | |
Moved SigmodWrapper to GameWrapper
Diffstat (limited to 'sigscript/CoinListWrapper.h')
| -rw-r--r-- | sigscript/CoinListWrapper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sigscript/CoinListWrapper.h b/sigscript/CoinListWrapper.h index 6665054f..042f1746 100644 --- a/sigscript/CoinListWrapper.h +++ b/sigscript/CoinListWrapper.h @@ -33,14 +33,14 @@ class CoinList; namespace Sigscript { class CoinListItemWrapper; -class SigmodWrapper; +class GameWrapper; class SIGSCRIPT_EXPORT CoinListWrapper : public ObjectWrapper { Q_OBJECT public: - static CoinListWrapper* create(const Sigmod::CoinList* coinList, SigmodWrapper* parent); + static CoinListWrapper* create(const Sigmod::CoinList* coinList, GameWrapper* parent); Q_SCRIPTABLE QString name() const; Q_SCRIPTABLE Sigcore::Script script() const; @@ -48,7 +48,7 @@ class SIGSCRIPT_EXPORT CoinListWrapper : public ObjectWrapper Q_SCRIPTABLE CoinListItemWrapper* item(const int index); Q_SCRIPTABLE int itemCount() const; private: - CoinListWrapper(const Sigmod::CoinList* coinList, SigmodWrapper* parent); + CoinListWrapper(const Sigmod::CoinList* coinList, GameWrapper* parent); CoinListWrapper& operator=(const CoinListWrapper& rhs); const Sigmod::CoinList* m_coinList; |
