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/WeatherWrapper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sigscript/WeatherWrapper.cpp') 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 -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(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) { -- cgit