From: John L. <jr...@us...> - 2008-12-03 05:26:08
|
Update of /cvsroot/wxlua/wxLua/docs In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv3179/wxLua/docs Modified Files: changelog.txt Log Message: Make wxLuaEdit print items on the stack and use '=' as the Lua executable. Changed wxLuaState::RunBuffer() to take const char*, not const unsigned char*. Allow wxLuaState::RunString/Buffer() to leave values on the stack. Index: changelog.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** changelog.txt 27 Oct 2008 02:27:19 -0000 1.65 --- changelog.txt 3 Dec 2008 05:26:03 -0000 1.66 *************** *** 11,14 **** --- 11,20 ---- You will need to swap the parameters for it in your bindings. Example: %typedef long wxTextCoord + - Added more C/C++ operators in the bindings. + - wxLuaEdit now prints values in the console like the Lua executable. + * Changed signature of wxLuaState::RunBuffer() to take a const char* + instead of an const unsigned char*, cast to (const char*) as appropriate. + - Allow wxLuaState::RunString/Buffer() and friends to allow for values left + on the stack. The default is to leave none as before. version 2.8.7.0 (released 02/02/2008) |