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/WeatherWrapper.cpp | |
| parent | b6d07f0ca14256a42268e69190891c56bf978bd4 (diff) | |
| download | sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.gz sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.xz sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.zip | |
Moved SigmodWrapper to GameWrapper
Diffstat (limited to 'sigscript/WeatherWrapper.cpp')
| -rw-r--r-- | sigscript/WeatherWrapper.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sigscript/WeatherWrapper.cpp b/sigscript/WeatherWrapper.cpp index f6c25fe4..b995973d 100644 --- a/sigscript/WeatherWrapper.cpp +++ b/sigscript/WeatherWrapper.cpp @@ -19,12 +19,12 @@ #include "WeatherWrapper.h" // Sigscript includes -#include "SigmodWrapper.h" +#include "GameWrapper.h" // Sigmod includes #include <sigmod/Weather.h> -Sigscript::WeatherWrapper* Sigscript::WeatherWrapper::create(const Sigmod::Weather* weather, SigmodWrapper* parent) +Sigscript::WeatherWrapper* Sigscript::WeatherWrapper::create(const Sigmod::Weather* weather, GameWrapper* parent) { Signature sig = Signature(parent, Subsignature(weather->className(), weather->id())); if (!m_instances.contains(sig)) @@ -32,7 +32,7 @@ Sigscript::WeatherWrapper* Sigscript::WeatherWrapper::create(const Sigmod::Weath return qobject_cast<WeatherWrapper*>(m_instances[sig]); } -Sigscript::WeatherWrapper::WeatherWrapper(const Sigmod::Weather* weather, SigmodWrapper* parent) : +Sigscript::WeatherWrapper::WeatherWrapper(const Sigmod::Weather* weather, GameWrapper* parent) : ObjectWrapper(weather, parent), m_weather(weather) { |
