summaryrefslogtreecommitdiffstats
path: root/src/Data/Level.cpp
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-04-14 11:19:00 +0200
committerneoraider <devnull@localhost>2008-04-14 11:19:00 +0200
commit9c24bd0bb259124e36367c9c8a62af7b19ba8e67 (patch)
treefe3274185ef36bfd64e0c73ec364602109ba3a98 /src/Data/Level.cpp
parent55af49b48328d4828fe8520d7d7aa0bc776afeb0 (diff)
downloadzoomedit-9c24bd0bb259124e36367c9c8a62af7b19ba8e67.tar
zoomedit-9c24bd0bb259124e36367c9c8a62af7b19ba8e67.zip
zoomedit:
* Use 0 instead of NULL consistantly
Diffstat (limited to 'src/Data/Level.cpp')
-rw-r--r--src/Data/Level.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Data/Level.cpp b/src/Data/Level.cpp
index 283bf66..7193f37 100644
--- a/src/Data/Level.cpp
+++ b/src/Data/Level.cpp
@@ -69,7 +69,7 @@ Room* Level::getRoom(const Glib::ustring &id) const {
return *room;
}
- return NULL;
+ return 0;
}
Room* Level::addRoom(const Glib::ustring &id) {
@@ -95,7 +95,7 @@ Gate* Level::getGate(const Glib::ustring &id) const {
return *gate;
}
- return NULL;
+ return 0;
}
Gate* Level::addGate(const Glib::ustring &id) {
@@ -123,7 +123,7 @@ Texture* Level::getTexture(const Glib::ustring &id) const {
return *tex;
}
- return NULL;
+ return 0;
}
Texture* Level::addTexture(const Glib::ustring &id) {