diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-09-06 04:12:30 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-09-06 04:12:30 +0000 |
| commit | 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch) | |
| tree | a2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigscript/GlobalScriptWrapper.cpp | |
| parent | b81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff) | |
| download | sigen-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/GlobalScriptWrapper.cpp')
| -rw-r--r-- | sigscript/GlobalScriptWrapper.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sigscript/GlobalScriptWrapper.cpp b/sigscript/GlobalScriptWrapper.cpp index 34a3fa62..0be3e2ed 100644 --- a/sigscript/GlobalScriptWrapper.cpp +++ b/sigscript/GlobalScriptWrapper.cpp @@ -18,28 +18,28 @@ // Header include #include "GlobalScriptWrapper.h" -// Pokescripting includes -#include "PokemodWrapper.h" +// Sigscript includes +#include "SigmodWrapper.h" -Pokescripting::GlobalScriptWrapper* Pokescripting::GlobalScriptWrapper::create(const Pokemod::GlobalScript* globalScript, PokemodWrapper* parent) +Sigscript::GlobalScriptWrapper* Sigscript::GlobalScriptWrapper::create(const Sigmod::GlobalScript* globalScript, SigmodWrapper* parent) { if (!m_instances.contains(Signiture(parent, globalScript->id()))) m_instances[Signiture(parent, globalScript->id())] = new GlobalScriptWrapper(globalScript, parent); return qobject_cast<GlobalScriptWrapper*>(m_instances[Signiture(parent, globalScript->id())]); } -Pokescripting::GlobalScriptWrapper::GlobalScriptWrapper(const Pokemod::GlobalScript* globalScript, PokemodWrapper* parent) : +Sigscript::GlobalScriptWrapper::GlobalScriptWrapper(const Sigmod::GlobalScript* globalScript, SigmodWrapper* parent) : ObjectWrapper(globalScript, parent), m_globalScript(globalScript) { } -QString Pokescripting::GlobalScriptWrapper::name() const +QString Sigscript::GlobalScriptWrapper::name() const { return m_globalScript->name(); } -Pokemod::Script Pokescripting::GlobalScriptWrapper::script() const +Sigmod::Script Sigscript::GlobalScriptWrapper::script() const { return m_globalScript->script(); } |
