X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fscripting%2Fsquirrel_util.hpp;h=f419bdf54e856f4b8b9cf6cbea2542bd668d370b;hb=13e56e5b8d9727128667bb42c3aa4850b4a8dd00;hp=2648b5f083a3ecf6200cb6de25f3ab15fff40eed;hpb=045255cdf0a58161b908d769bc0bde1778c33e14;p=supertux.git diff --git a/src/scripting/squirrel_util.hpp b/src/scripting/squirrel_util.hpp index 2648b5f08..f419bdf54 100644 --- a/src/scripting/squirrel_util.hpp +++ b/src/scripting/squirrel_util.hpp @@ -22,7 +22,7 @@ #include "scripting/squirrel_error.hpp" #include "scripting/wrapper.hpp" -namespace Scripting { +namespace scripting { extern HSQUIRRELVM global_vm; @@ -47,7 +47,7 @@ void expose_object(HSQUIRRELVM v, SQInteger table_idx, T* object, const std::string& name, bool free = false) { sq_pushstring(v, name.c_str(), -1); - Scripting::create_squirrel_instance(v, object, free); + scripting::create_squirrel_instance(v, object, free); if(table_idx < 0) table_idx -= 2; @@ -56,7 +56,7 @@ void expose_object(HSQUIRRELVM v, SQInteger table_idx, T* object, if(SQ_FAILED(sq_createslot(v, table_idx))) { std::ostringstream msg; msg << "Couldn't register object '" << name << "' in squirrel table"; - throw Scripting::SquirrelError(v, msg.str()); + throw scripting::SquirrelError(v, msg.str()); } } @@ -71,7 +71,7 @@ static inline void unexpose_object(HSQUIRRELVM v, SQInteger table_idx, if(SQ_FAILED(sq_deleteslot(v, table_idx, SQFalse))) { std::ostringstream msg; msg << "Couldn't unregister object '" << name << "' in squirrel root table"; - throw Scripting::SquirrelError(v, msg.str()); + throw scripting::SquirrelError(v, msg.str()); } }