summaryrefslogtreecommitdiffstats
path: root/sigscript/WeatherWrapper.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
commit0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch)
treea2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigscript/WeatherWrapper.cpp
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
downloadsigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.gz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.xz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.zip
[FIX] Renamed everything (in use) away from Poké- prefixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigscript/WeatherWrapper.cpp')
-rw-r--r--sigscript/WeatherWrapper.cpp12
1 files changed, 6 insertions, 6 deletions
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<WeatherWrapper*>(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();
}