translation update
[supertux.git] / src / supertux / game_object.cpp
index bb76c99..3e34a53 100644 (file)
@@ -18,7 +18,7 @@
 #include "supertux/object_remove_listener.hpp"
 
 GameObject::GameObject() :
-  wants_to_die(false), 
+  wants_to_die(false),
   remove_listeners(NULL),
   name()
 {
@@ -28,7 +28,7 @@ GameObject::GameObject(const GameObject& rhs) :
   wants_to_die(rhs.wants_to_die),
   remove_listeners(NULL),
   name(rhs.name)
-{  
+{
 }
 
 GameObject::~GameObject()
@@ -42,8 +42,8 @@ GameObject::~GameObject()
     entry = next;
   }
 }
-void 
+
+void
 GameObject::add_remove_listener(ObjectRemoveListener* listener)
 {
   RemoveListenerListEntry* entry = new RemoveListenerListEntry();