summaryrefslogtreecommitdiffstats
path: root/pokemod/Item.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/Item.cpp')
-rw-r--r--pokemod/Item.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/pokemod/Item.cpp b/pokemod/Item.cpp
index b06e3e48..4a2c62d2 100644
--- a/pokemod/Item.cpp
+++ b/pokemod/Item.cpp
@@ -27,13 +27,13 @@
#include <QtCore/QSet>
Pokemod::Item::Item(const Item& item) :
- Object("Item", item.parent(), item.id())
+ Object(item.parent(), item.id())
{
*this = item;
}
Pokemod::Item::Item(const Pokemod* parent, const int id) :
- Object("Item", parent, id),
+ Object(parent, id),
m_name(""),
m_sellable(false),
m_type(INT_MAX),
@@ -44,13 +44,13 @@ Pokemod::Item::Item(const Pokemod* parent, const int id) :
}
Pokemod::Item::Item(const Item& item, const Pokemod* parent, const int id) :
- Object("Item", parent, id)
+ Object(parent, id)
{
*this = item;
}
Pokemod::Item::Item(const QDomElement& xml, const Pokemod* parent, const int id) :
- Object("Item", parent, id)
+ Object(parent, id)
{
LOAD_ID();
load(xml);