summaryrefslogtreecommitdiffstats
path: root/sigscript/AuthorWrapper.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/AuthorWrapper.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/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();
}