Changeset 6761
- Timestamp:
- Apr 19, 2010, 4:49:11 PM (15 years ago)
- Location:
- code/trunk/src/external/ceguilua/ceguilua-0.6.2/ceguilua
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/external/ceguilua/ceguilua-0.6.2/ceguilua/CEGUILua.cpp
r5781 r6761 56 56 *************************************************************************/ 57 57 LuaScriptModule::LuaScriptModule() : 58 d_errFuncIndex(LUA_NOREF) 58 d_errFuncIndex(LUA_NOREF), 59 d_activeErrFuncIndex(LUA_NOREF) 59 60 { 60 61 #if LUA_VERSION_NUM >= 501 … … 105 106 Constructor (uses given Lua state) 106 107 *************************************************************************/ 107 LuaScriptModule::LuaScriptModule(lua_State* state) 108 LuaScriptModule::LuaScriptModule(lua_State* state) : 109 d_errFuncIndex(LUA_NOREF), 110 d_activeErrFuncIndex(LUA_NOREF) 108 111 { 109 112 // just use the given state -
code/trunk/src/external/ceguilua/ceguilua-0.6.2/ceguilua/CEGUILuaFunctor.cpp
r5781 r6761 200 200 lua_pop(L, 1); 201 201 202 // remove error handler from stack 203 if (err_idx != 0) 204 lua_remove(L, err_idx); 205 202 206 if(helper) 203 207 {
Note: See TracChangeset
for help on using the changeset viewer.