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/SpriteWrapper.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'sigscript/SpriteWrapper.h') diff --git a/sigscript/SpriteWrapper.h b/sigscript/SpriteWrapper.h index 77db2e47..0b58c066 100644 --- a/sigscript/SpriteWrapper.h +++ b/sigscript/SpriteWrapper.h @@ -15,33 +15,33 @@ * with this program. If not, see . */ -#ifndef __POKESCRIPTING_SPRITEWRAPPER__ -#define __POKESCRIPTING_SPRITEWRAPPER__ +#ifndef __SIGSCRIPT_SPRITEWRAPPER__ +#define __SIGSCRIPT_SPRITEWRAPPER__ -// Pokescripting includes +// Sigscript includes #include "ObjectWrapper.h" -// Pokemod includes -#include "../pokemod/Sprite.h" +// Sigmod includes +#include "../sigmod/Sprite.h" -namespace Pokescripting +namespace Sigscript { -class POKESCRIPTING_EXPORT SpriteWrapper : public ObjectWrapper +class SIGSCRIPT_EXPORT SpriteWrapper : public ObjectWrapper { Q_OBJECT public: - static SpriteWrapper* create(const Pokemod::Sprite* sprite, PokemodWrapper* parent); + static SpriteWrapper* create(const Sigmod::Sprite* sprite, SigmodWrapper* parent); Q_SCRIPTABLE QString name() const; Q_SCRIPTABLE QImage sprite() const; private: - SpriteWrapper(const Pokemod::Sprite* sprite, PokemodWrapper* parent); + SpriteWrapper(const Sigmod::Sprite* sprite, SigmodWrapper* parent); SpriteWrapper& operator=(const SpriteWrapper& rhs); - const Pokemod::Sprite* m_sprite; + const Sigmod::Sprite* m_sprite; }; } -Q_DECLARE_METATYPE(Pokescripting::SpriteWrapper*) +Q_DECLARE_METATYPE(Sigscript::SpriteWrapper*) #endif -- cgit