Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2252


Ignore:
Timestamp:
Nov 23, 2008, 9:22:25 PM (15 years ago)
Author:
rgrieder
Message:

Removed tabs that got inserted in my vim sessions.

Location:
code/branches/buildsystem/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem/src/orxonox/gui/GUIManager.h

    r2234 r2252  
    5151    class _OrxonoxExport GUIManager
    5252// tolua_end
    53                 : public KeyHandler, public MouseHandler
    54     { // tolua_export
     53        : public KeyHandler, public MouseHandler
     54// tolua_begin
     55    {
     56// tolua_end
    5557    public:
    5658        enum State
  • code/branches/buildsystem/src/tolua/lua/doit.lua

    r2236 r2252  
    6161
    6262    -- proccess package
    63         local file
    64         if flags.f then
     63    local file
     64    if flags.f then
    6565        if string.sub(flags.f, 1, 1) == '/' or string.sub(flags.f, 1, 1) == '\\' then
    6666            file = flags.f
     
    7878
    7979    if flags.o then
    80             local file
     80        local file
    8181        if string.sub(flags.o, 1, 1) == '/' or string.sub(flags.o, 1, 1) == '\\' then
    8282            file = flags.o
     
    109109    if not flags.P then
    110110        if flags.H then
    111                 local file
     111            local file
    112112            if string.sub(flags.H, 1, 1) == '/' or string.sub(flags.H, 1, 1) == '\\' then
    113113                file = flags.H
  • code/branches/buildsystem/src/tolua/tolua.c

    r2248 r2252  
    6969
    7070static void add_extra (lua_State* L, char* value) {
    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);
     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);
    7777};
    7878
Note: See TracChangeset for help on using the changeset viewer.