From 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 6 Sep 2008 04:12:30 +0000 Subject: [FIX] Renamed everything (in use) away from Poké- prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigscript/AuthorWrapper.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sigscript/AuthorWrapper.cpp') 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(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(); } -- cgit