summaryrefslogtreecommitdiffstats
path: root/sigscript/EggGroupWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/EggGroupWrapper.cpp')
-rw-r--r--sigscript/EggGroupWrapper.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/sigscript/EggGroupWrapper.cpp b/sigscript/EggGroupWrapper.cpp
index 2f3f9051..7ed1ddf2 100644
--- a/sigscript/EggGroupWrapper.cpp
+++ b/sigscript/EggGroupWrapper.cpp
@@ -18,23 +18,23 @@
// Header include
#include "EggGroupWrapper.h"
-// Pokescripting includes
-#include "PokemodWrapper.h"
+// Sigscript includes
+#include "SigmodWrapper.h"
-Pokescripting::EggGroupWrapper* Pokescripting::EggGroupWrapper::create(const Pokemod::EggGroup* eggGroup, PokemodWrapper* parent)
+Sigscript::EggGroupWrapper* Sigscript::EggGroupWrapper::create(const Sigmod::EggGroup* eggGroup, SigmodWrapper* parent)
{
if (!m_instances.contains(Signiture(parent, eggGroup->id())))
m_instances[Signiture(parent, eggGroup->id())] = new EggGroupWrapper(eggGroup, parent);
return qobject_cast<EggGroupWrapper*>(m_instances[Signiture(parent, eggGroup->id())]);
}
-Pokescripting::EggGroupWrapper::EggGroupWrapper(const Pokemod::EggGroup* eggGroup, PokemodWrapper* parent) :
+Sigscript::EggGroupWrapper::EggGroupWrapper(const Sigmod::EggGroup* eggGroup, SigmodWrapper* parent) :
ObjectWrapper(eggGroup, parent),
m_eggGroup(eggGroup)
{
}
-QString Pokescripting::EggGroupWrapper::name() const
+QString Sigscript::EggGroupWrapper::name() const
{
return m_eggGroup->name();
}