X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgame_object.cpp;h=ee63ec1c1547acc9820a54b1278111ee8da11eae;hb=4a486d92343d1824b311c234e9321e08f280fe68;hp=c63dbf12be6163e205370dc2efbc7be499492d44;hpb=5b7f9214cb929399f1a855ef5807018a9447d510;p=supertux.git diff --git a/src/game_object.cpp b/src/game_object.cpp index c63dbf12b..ee63ec1c1 100644 --- a/src/game_object.cpp +++ b/src/game_object.cpp @@ -1,7 +1,7 @@ -// $Id: game_object.cpp 2277 2005-01-16 12:11:22Z matzebraun $ +// $Id$ // -// SuperTux - A Jump'n Run -// Copyright (C) 2004 Matthias Braun +// SuperTux +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -23,7 +23,7 @@ #include "object_remove_listener.hpp" GameObject::GameObject() - : wants_to_die(false), remove_listeners(0), flags(0) + : wants_to_die(false), remove_listeners(NULL) { } @@ -31,10 +31,11 @@ GameObject::~GameObject() { // call remove listeners (and remove them from the list) RemoveListenerListEntry* entry = remove_listeners; - while(entry != 0) { + while(entry != NULL) { RemoveListenerListEntry* next = entry->next; entry->listener->object_removed(this); delete entry; entry = next; } } +