fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / object / text_object.cpp
index 5fbd47f..af35643 100644 (file)
@@ -24,7 +24,7 @@
 #include <iostream>
 #include "resources.hpp"
 #include "video/drawing_context.hpp"
-#include "scripting/wrapper_util.hpp"
+#include "scripting/squirrel_util.hpp"
 #include "log.hpp"
 
 TextObject::TextObject()
@@ -39,14 +39,14 @@ TextObject::~TextObject()
 }
 
 void
-TextObject::expose(HSQUIRRELVM vm, int table_idx)
+TextObject::expose(HSQUIRRELVM vm, SQInteger table_idx)
 {
   Scripting::Text* interface = static_cast<Scripting::Text*> (this);
   Scripting::expose_object(vm, table_idx, interface, "Text", false);
 }
 
 void
-TextObject::unexpose(HSQUIRRELVM vm, int table_idx)
+TextObject::unexpose(HSQUIRRELVM vm, SQInteger table_idx)
 {
   Scripting::unexpose_object(vm, table_idx, "Text");
 }
@@ -145,4 +145,3 @@ TextObject::update(float elapsed_time)
     }
   }
 }
-