Removed trailing whitespace from all *.?pp files
[supertux.git] / src / object / pushbutton.cpp
index 07190c2..19cc9f9 100644 (file)
 #include "supertux/sector.hpp"
 #include "util/reader.hpp"
 
+#include <sstream>
+#include <stdexcept>
+
 namespace {
 const std::string BUTTON_SOUND = "sounds/switch.ogg";
 //14 -> 8
 }
 
 PushButton::PushButton(const Reader& lisp) :
-  MovingSprite(lisp, "images/objects/pushbutton/pushbutton.sprite", LAYER_BACKGROUNDTILES+1, COLGROUP_MOVING), 
+  MovingSprite(lisp, "images/objects/pushbutton/pushbutton.sprite", LAYER_BACKGROUNDTILES+1, COLGROUP_MOVING),
   script(),
   state(OFF)
 {