From 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 6 Sep 2008 04:12:30 +0000 Subject: [FIX] Renamed everything (in use) away from Poké- prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigscript/WeatherWrapper.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sigscript/WeatherWrapper.cpp') diff --git a/sigscript/WeatherWrapper.cpp b/sigscript/WeatherWrapper.cpp index ad7bc990..34965d9d 100644 --- a/sigscript/WeatherWrapper.cpp +++ b/sigscript/WeatherWrapper.cpp @@ -18,28 +18,28 @@ // Header include #include "WeatherWrapper.h" -// Pokescripting includes -#include "PokemodWrapper.h" +// Sigscript includes +#include "SigmodWrapper.h" -Pokescripting::WeatherWrapper* Pokescripting::WeatherWrapper::create(const Pokemod::Weather* weather, PokemodWrapper* parent) +Sigscript::WeatherWrapper* Sigscript::WeatherWrapper::create(const Sigmod::Weather* weather, SigmodWrapper* parent) { if (!m_instances.contains(Signiture(parent, weather->id()))) m_instances[Signiture(parent, weather->id())] = new WeatherWrapper(weather, parent); return qobject_cast(m_instances[Signiture(parent, weather->id())]); } -Pokescripting::WeatherWrapper::WeatherWrapper(const Pokemod::Weather* weather, PokemodWrapper* parent) : +Sigscript::WeatherWrapper::WeatherWrapper(const Sigmod::Weather* weather, SigmodWrapper* parent) : ObjectWrapper(weather, parent), m_weather(weather) { } -QString Pokescripting::WeatherWrapper::name() const +QString Sigscript::WeatherWrapper::name() const { return m_weather->name(); } -Pokemod::Script Pokescripting::WeatherWrapper::script() const +Sigmod::Script Sigscript::WeatherWrapper::script() const { return m_weather->script(); } -- cgit