summaryrefslogtreecommitdiffstats
path: root/sigmod/EggGroup.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 /sigmod/EggGroup.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 'sigmod/EggGroup.cpp')
-rw-r--r--sigmod/EggGroup.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigmod/EggGroup.cpp b/sigmod/EggGroup.cpp
index 4f028611..db40b4de 100644
--- a/sigmod/EggGroup.cpp
+++ b/sigmod/EggGroup.cpp
@@ -18,36 +18,36 @@
// Header include
#include "EggGroup.h"
-// Pokemod includes
+// Sigmod includes
#include "Macros.h"
-#include "Pokemod.h"
+#include "Sigmod.h"
-Pokemod::EggGroup::EggGroup(const EggGroup& eggGroup) :
+Sigmod::EggGroup::EggGroup(const EggGroup& eggGroup) :
Object(eggGroup.parent(), eggGroup.id())
{
*this = eggGroup;
}
-Pokemod::EggGroup::EggGroup(const Pokemod* parent, const int id) :
+Sigmod::EggGroup::EggGroup(const Sigmod* parent, const int id) :
Object(parent, id),
m_name("")
{
}
-Pokemod::EggGroup::EggGroup(const EggGroup& eggGroup, const Pokemod* parent, const int id) :
+Sigmod::EggGroup::EggGroup(const EggGroup& eggGroup, const Sigmod* parent, const int id) :
Object(parent, id)
{
*this = eggGroup;
}
-Pokemod::EggGroup::EggGroup(const QDomElement& xml, const Pokemod* parent, const int id) :
+Sigmod::EggGroup::EggGroup(const QDomElement& xml, const Sigmod* parent, const int id) :
Object(parent, id)
{
LOAD_ID();
load(xml);
}
-void Pokemod::EggGroup::validate()
+void Sigmod::EggGroup::validate()
{
TEST_BEGIN();
if (m_name.isEmpty())
@@ -55,30 +55,30 @@ void Pokemod::EggGroup::validate()
TEST_END();
}
-void Pokemod::EggGroup::load(const QDomElement& xml)
+void Sigmod::EggGroup::load(const QDomElement& xml)
{
LOAD_BEGIN();
LOAD(name);
}
-QDomElement Pokemod::EggGroup::save() const
+QDomElement Sigmod::EggGroup::save() const
{
SAVE_CREATE();
SAVE(name);
return xml;
}
-void Pokemod::EggGroup::setName(const QString& name)
+void Sigmod::EggGroup::setName(const QString& name)
{
CHECK(name);
}
-QString Pokemod::EggGroup::name() const
+QString Sigmod::EggGroup::name() const
{
return m_name;
}
-Pokemod::EggGroup& Pokemod::EggGroup::operator=(const EggGroup& rhs)
+Sigmod::EggGroup& Sigmod::EggGroup::operator=(const EggGroup& rhs)
{
if (this == &rhs)
return *this;