Update of /cvsroot/wxlua/wxLua/modules/wxlua/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9980/wxLua/modules/wxlua/include
Modified Files:
wxlstate.h
Log Message:
Code cleanup in wxlstate.cpp
Sort numeric debug items by number so you don't get 1,10,2,3,4...
Index: wxlstate.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlstate.h,v
retrieving revision 1.96
retrieving revision 1.97
diff -C2 -d -r1.96 -r1.97
*** wxlstate.h 30 Nov 2007 23:00:07 -0000 1.96
--- wxlstate.h 3 Dec 2007 23:47:24 -0000 1.97
***************
*** 69,73 ****
// ----------------------------------------------------------------------------
! // 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
--- 69,73 ----
// ----------------------------------------------------------------------------
! // Special keys used by wxLua
//
// Note we do not push a human readable string for these because Lua always makes
***************
*** 145,149 ****
WXDLLIMPEXP_WXLUA bool LUACALL wxluaT_get(lua_State* L, int wxlref_index, const void* lightuserdata_reg_key);
// Push the object u onto the top of the stack wrapped in a newuserdata
! // with it's metatable set to the table from wxluaT_get(tag).
// Returns true if the tag is known and the metatable was set.
// If track=true then push the object as a lightuser data key into the
--- 145,149 ----
WXDLLIMPEXP_WXLUA bool LUACALL wxluaT_get(lua_State* L, int wxlref_index, const void* lightuserdata_reg_key);
// Push the object u onto the top of the stack wrapped in a newuserdata
! // with it's metatable set to the table from wxluaT_get(L, tag, &wxlua_lreg_tags_key).
// Returns true if the tag is known and the metatable was set.
// If track=true then push the object as a lightuser data key into the
|