conditionally generate the miniswig wrapper like it used to in autoconf+jam
[supertux.git] / src / trigger / switch.hpp
index fecc5b0..8742f80 100644 (file)
@@ -17,8 +17,8 @@
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#ifndef SUPERTUX_DOOR_H
-#define SUPERTUX_DOOR_H
+#ifndef SUPERTUX_SWITCH_H
+#define SUPERTUX_SWITCH_H
 
 #include <string>
 
@@ -36,7 +36,7 @@ public:
   virtual ~Switch();
 
   virtual void write(lisp::Writer& writer);
-  
+
   virtual void update(float elapsed_time);
   virtual void draw(DrawingContext& context);
   virtual void event(Player& player, EventType type);
@@ -52,7 +52,7 @@ private:
   std::string sprite_name;
   Sprite* sprite;
   std::string script;
-  
+
   SwitchState state;
 
 };