diff options
Diffstat (limited to 'pokemod/Object.cpp')
| -rw-r--r-- | pokemod/Object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemod/Object.cpp b/pokemod/Object.cpp index ba94556c..6cd96e19 100644 --- a/pokemod/Object.cpp +++ b/pokemod/Object.cpp @@ -22,7 +22,7 @@ #include "Macros.h" Pokemod::Object::Object(const Object& object) : - QObject(0), + QObject(NULL), m_id(object.id()), m_className(object.className()), m_parent(object.parent()) @@ -30,7 +30,7 @@ Pokemod::Object::Object(const Object& object) : } Pokemod::Object::Object(const QString& className, const Object* parent, const int id) : - QObject(0), + QObject(NULL), m_id(id), m_className(className), m_parent(parent) |
