Changeset 2252 for code/branches/buildsystem
- Timestamp:
- Nov 23, 2008, 9:22:25 PM (16 years ago)
- Location:
- code/branches/buildsystem/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem/src/orxonox/gui/GUIManager.h
r2234 r2252 51 51 class _OrxonoxExport GUIManager 52 52 // tolua_end 53 : public KeyHandler, public MouseHandler 54 { // tolua_export 53 : public KeyHandler, public MouseHandler 54 // tolua_begin 55 { 56 // tolua_end 55 57 public: 56 58 enum State -
code/branches/buildsystem/src/tolua/lua/doit.lua
r2236 r2252 61 61 62 62 -- proccess package 63 64 63 local file 64 if flags.f then 65 65 if string.sub(flags.f, 1, 1) == '/' or string.sub(flags.f, 1, 1) == '\\' then 66 66 file = flags.f … … 78 78 79 79 if flags.o then 80 80 local file 81 81 if string.sub(flags.o, 1, 1) == '/' or string.sub(flags.o, 1, 1) == '\\' then 82 82 file = flags.o … … 109 109 if not flags.P then 110 110 if flags.H then 111 111 local file 112 112 if string.sub(flags.H, 1, 1) == '/' or string.sub(flags.H, 1, 1) == '\\' then 113 113 file = flags.H -
code/branches/buildsystem/src/tolua/tolua.c
r2248 r2252 69 69 70 70 static void add_extra (lua_State* L, char* value) { 71 72 73 74 75 76 71 int len; 72 lua_getglobal(L, "_extra_parameters"); 73 len = luaL_getn(L, -1); 74 lua_pushstring(L, value); 75 lua_rawseti(L, -2, len+1); 76 lua_pop(L, 1); 77 77 }; 78 78
Note: See TracChangeset
for help on using the changeset viewer.