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 --- sigmodr/models/GlobalScriptGroupModel.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sigmodr/models/GlobalScriptGroupModel.h') diff --git a/sigmodr/models/GlobalScriptGroupModel.h b/sigmodr/models/GlobalScriptGroupModel.h index 442135b0..22a0277d 100644 --- a/sigmodr/models/GlobalScriptGroupModel.h +++ b/sigmodr/models/GlobalScriptGroupModel.h @@ -15,32 +15,32 @@ * with this program. If not, see . */ -#ifndef __POKEMODR_GLOBALSCRIPTGROUPMODEL__ -#define __POKEMODR_GLOBALSCRIPTGROUPMODEL__ +#ifndef __SIGMODR_GLOBALSCRIPTGROUPMODEL__ +#define __SIGMODR_GLOBALSCRIPTGROUPMODEL__ // Model includes #include "GroupModel.h" // Forward declarations -namespace Pokemod +namespace Sigmod { -class Pokemod; +class Sigmod; } -namespace Pokemodr +namespace Sigmodr { class GlobalScriptGroupModel : public GroupModel { Q_OBJECT public: - GlobalScriptGroupModel(BaseModel* parent, Pokemod::Pokemod* pokemod); + GlobalScriptGroupModel(BaseModel* parent, Sigmod::Sigmod* sigmod); ~GlobalScriptGroupModel(); QVariant data(const int role = Qt::DisplayRole) const; bool setData(const QVariant& value, int role = Qt::EditRole); public slots: - void addObject(Pokemod::Object* object = NULL); + void addObject(Sigmod::Object* object = NULL); void deleteObject(BaseObjectModel* model); }; } -- cgit