summaryrefslogtreecommitdiffstats
path: root/sigscript/AuthorWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/AuthorWrapper.cpp')
-rw-r--r--sigscript/AuthorWrapper.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/sigscript/AuthorWrapper.cpp b/sigscript/AuthorWrapper.cpp
index 53834074..9398b1b8 100644
--- a/sigscript/AuthorWrapper.cpp
+++ b/sigscript/AuthorWrapper.cpp
@@ -18,33 +18,33 @@
// Header include
#include "AuthorWrapper.h"
-// Pokescripting includes
-#include "PokemodWrapper.h"
+// Sigscript includes
+#include "SigmodWrapper.h"
-Pokescripting::AuthorWrapper* Pokescripting::AuthorWrapper::create(const Pokemod::Author* author, PokemodWrapper* parent)
+Sigscript::AuthorWrapper* Sigscript::AuthorWrapper::create(const Sigmod::Author* author, SigmodWrapper* parent)
{
if (!m_instances.contains(Signiture(parent, author->id())))
m_instances[Signiture(parent, author->id())] = new AuthorWrapper(author, parent);
return qobject_cast<AuthorWrapper*>(m_instances[Signiture(parent, author->id())]);
}
-Pokescripting::AuthorWrapper::AuthorWrapper(const Pokemod::Author* author, PokemodWrapper* parent) :
+Sigscript::AuthorWrapper::AuthorWrapper(const Sigmod::Author* author, SigmodWrapper* parent) :
ObjectWrapper(author, parent),
m_author(author)
{
}
-QString Pokescripting::AuthorWrapper::name() const
+QString Sigscript::AuthorWrapper::name() const
{
return m_author->name();
}
-QString Pokescripting::AuthorWrapper::email() const
+QString Sigscript::AuthorWrapper::email() const
{
return m_author->email();
}
-QString Pokescripting::AuthorWrapper::role() const
+QString Sigscript::AuthorWrapper::role() const
{
return m_author->role();
}