From 63417b1c5057d22bd853e92cd3a25aa812b8d917 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 2 Aug 2008 18:49:43 +0000 Subject: [ADD] Added XMLGUI file for pokemodr [FIX] Pokemodr is now a KXmlGuiWindow (working on KatePart fixes) [FIX] Started Doxygen stuff [FIX] Object names of Pokemod classes are now determined using metaObject [FIX] Updated to use KDE 4.1 git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@232 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemod/GlobalScript.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pokemod/GlobalScript.cpp') diff --git a/pokemod/GlobalScript.cpp b/pokemod/GlobalScript.cpp index cafd6835..05d3bddf 100644 --- a/pokemod/GlobalScript.cpp +++ b/pokemod/GlobalScript.cpp @@ -23,26 +23,26 @@ #include "Pokemod.h" Pokemod::GlobalScript::GlobalScript(const GlobalScript& globalScript) : - Object("GlobalScript", globalScript.parent(), globalScript.id()) + Object(globalScript.parent(), globalScript.id()) { *this = globalScript; } Pokemod::GlobalScript::GlobalScript(const Pokemod* parent, const int id) : - Object("GlobalScript", parent, id), + Object(parent, id), m_name(""), m_script("", "") { } Pokemod::GlobalScript::GlobalScript(const GlobalScript& globalScript, const Pokemod* parent, const int id) : - Object("GlobalScript", parent, id) + Object(parent, id) { *this = globalScript; } Pokemod::GlobalScript::GlobalScript(const QDomElement& xml, const Pokemod* parent, const int id) : - Object("GlobalScript", parent, id) + Object(parent, id) { LOAD_ID(); load(xml); -- cgit