Update of /cvsroot/wxlua/wxLua/modules/wxlua/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv26860/wxLua/modules/wxlua/include
Modified Files:
wxlbind.h wxlstate.h
Log Message:
Rename wxluabind_get/setTableFunction to what it really is wxluabind_index/newindex_wxLuaBindClass
Index: wxlbind.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlbind.h,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** wxlbind.h 17 Jun 2007 18:36:28 -0000 1.53
--- wxlbind.h 25 Jun 2007 19:44:50 -0000 1.54
***************
*** 23,32 ****
// ----------------------------------------------------------------------------
! // memory deallocation function, lua's __gc
! WXDLLIMPEXP_WXLUA int LUACALL wxluabind_garbageCollect(lua_State *L);
! // lua 'set table' tag method handler, lua's __newindex
! WXDLLIMPEXP_WXLUA int LUACALL wxluabind_setTableFunc(lua_State *L);
! // lua 'get table' tag method handler, lua's __index
! WXDLLIMPEXP_WXLUA int LUACALL wxluabind_getTableFunc(lua_State *L);
// If there is a special userdata upvalue, remove 1 value if !only_check
// (hack to remove the table lua pushes onto the stack when calling the
--- 23,32 ----
// ----------------------------------------------------------------------------
! // memory deallocation function for created wxLuaBindClass defined objects, lua's __gc
! WXDLLIMPEXP_WXLUA int LUACALL wxluabind_gc_wxLuaBindClass(lua_State *L);
! // lua 'set table' function for created wxLuaBindClass defined objects, lua's __newindex
! WXDLLIMPEXP_WXLUA int LUACALL wxluabind__newindex_wxLuaBindClass(lua_State *L);
! // lua 'get table' function for created wxLuaBindClass defined objects, lua's __index
! WXDLLIMPEXP_WXLUA int LUACALL wxluabind_index_wxLuaBindClass(lua_State *L);
// If there is a special userdata upvalue, remove 1 value if !only_check
// (hack to remove the table lua pushes onto the stack when calling the
Index: wxlstate.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlstate.h,v
retrieving revision 1.82
retrieving revision 1.83
diff -C2 -d -r1.82 -r1.83
*** wxlstate.h 25 Jun 2007 16:07:58 -0000 1.82
--- wxlstate.h 25 Jun 2007 19:44:50 -0000 1.83
***************
*** 88,92 ****
// ----------------------------------------------------------------------------
! // Push a special number into lua, defines to make sure it's always done the same.
//
// Note we do not push a human readable string for these because lua always makes
--- 88,92 ----
// ----------------------------------------------------------------------------
! // Push a special key into lua, defines to make sure it's always done the same.
//
// Note we do not push a human readable string for these because lua always makes
|