From: John L. <jr...@us...> - 2007-12-18 01:03:38
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19598/wxLua/docs Modified Files: wxluaref.html Log Message: Cleanup: lua to Lua Fix various binding errors, wrong params for static wxFile functions Bump version to 2.8.7 Add wxImage::GetData(), wxMemoryInputStream Index: wxluaref.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxluaref.html,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** wxluaref.html 14 Aug 2007 13:42:14 -0000 1.43 --- wxluaref.html 18 Dec 2007 01:03:32 -0000 1.44 *************** *** 8,12 **** <body> ! <h1>wxLua 2.8.4.0 Reference Manual for wxWidgets 2.8.4</h1> <h2>Classes</h2> --- 8,12 ---- <body> ! <h1>wxLua 2.8.4.0 Reference Manual for wxWidgets 2.8.7</h1> [...2201 lines suppressed...] <font color=#009900>// Given any type of object, returns four values:</font><br> <font color=#009900>// wxlua name of the type - wxLuaState::GetLuaTagName(wxlua_type)</font><br> ! <font color=#009900>// wxlua number of the type - wxlua_getwxluatype(lua_type(L, stack_idx)) or wxluaT_tag</font><br> <font color=#009900>// lua name of the type - lua_typename(L, lua_type(L, stack_idx))</font><br> <font color=#009900>// lua number of the type - lua_type(L, stack_idx)</font><br> *************** *** 24318,24323 **** <font color=#009900>// These items follow the structure below and ALL items are called as if they</font><br> <font color=#009900>// were table members.</font><br> ! <font color=#009900>// Example : print(wxlua.GetBindings()[1].binding.GetClassCount)</font><br> ! <font color=#009900>// Example : print(wxlua.GetBindings()[1].binding.GetClassArray[1].methods[1].name)</font><br> <font color=#009900>// Note: Use only '.' and NO () to make it a function call, also check to see</font><br> <font color=#009900>// if the item exists first (unlike the example above)!</font><br> --- 24568,24573 ---- <font color=#009900>// These items follow the structure below and ALL items are called as if they</font><br> <font color=#009900>// were table members.</font><br> ! <font color=#009900>// Example : print(wxlua.GetBindings()[1].GetClassCount)</font><br> ! <font color=#009900>// Example : print(wxlua.GetBindings()[1].GetClassArray[1].methods[1].name)</font><br> <font color=#009900>// Note: Use only '.' and NO () to make it a function call, also check to see</font><br> <font color=#009900>// if the item exists first (unlike the example above)!</font><br> |