summaryrefslogtreecommitdiffstats
path: root/pokemod/Object.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-07-12 01:42:12 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-07-12 01:42:12 +0000
commit2034fb953f52534506f17a9d03237eab3a2c2fbb (patch)
tree1b96061cb4e45188565c95e3c4f4763bd1017960 /pokemod/Object.cpp
parent15ad8b9bc075e3d0f7167267ed495a82d4c1a5a8 (diff)
downloadsigen-2034fb953f52534506f17a9d03237eab3a2c2fbb.tar.gz
sigen-2034fb953f52534506f17a9d03237eab3a2c2fbb.tar.xz
sigen-2034fb953f52534506f17a9d03237eab3a2c2fbb.zip
[FIX] Separated battle and world scripts for abilities and moves
[ADD] pokescripting library to allow scripts to use Pokemod information [FIX] Cleaned up examples in documentation git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@224 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Object.cpp')
-rw-r--r--pokemod/Object.cpp4
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)