summaryrefslogtreecommitdiffstats
path: root/pokemod/Store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/Store.cpp')
-rw-r--r--pokemod/Store.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/pokemod/Store.cpp b/pokemod/Store.cpp
index 5e03231e..3acffcac 100644
--- a/pokemod/Store.cpp
+++ b/pokemod/Store.cpp
@@ -23,25 +23,25 @@
#include "Pokemod.h"
Pokemod::Store::Store(const Store& store) :
- Object("Store", store.parent(), store.id())
+ Object(store.parent(), store.id())
{
*this = store;
}
Pokemod::Store::Store(const Pokemod* parent, const int id) :
- Object("Store", parent, id),
+ Object(parent, id),
m_name("")
{
}
Pokemod::Store::Store(const Store& store, const Pokemod* parent, const int id) :
- Object("Store", parent, id)
+ Object(parent, id)
{
*this = store;
}
Pokemod::Store::Store(const QDomElement& xml, const Pokemod* parent, const int id) :
- Object("Store", parent, id)
+ Object(parent, id)
{
LOAD_ID();
load(xml);