From: John L. <jr...@us...> - 2007-03-15 00:01:50
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15657/wxLua/docs Modified Files: changelog.txt Log Message: Remove wxLua_AddTrackedObject functions and just use wxLuaState::AddTrackedObject directly Remove all gc (destructor, LuaDelete) functions from the methods of a class since we can delete the objects in the single gc function in wxlbind.cpp anyway. Index: changelog.txt =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** changelog.txt 23 Feb 2007 04:35:30 -0000 1.24 --- changelog.txt 15 Mar 2007 00:01:12 -0000 1.25 *************** *** 6,14 **** -------------------------------------------------------------------- ! - Added RUNTIME_LIBS and THREADING options to the build system to allow to statically compile against the C runtime (only for some win compilers) - Added all of the wxWidget's wxUSE_XXX conditions to the bindings - Hopefully fixed the wx2lua and lua2wx string conversion for unicode and high ascii characters. version 2.8.0.0 (released 24/12/2006) --- 6,16 ---- -------------------------------------------------------------------- ! - Added RUNTIME_LIBS and THREADING options to the build system to allow to statically compile against the C runtime (only for some win compilers) - Added all of the wxWidget's wxUSE_XXX conditions to the bindings - Hopefully fixed the wx2lua and lua2wx string conversion for unicode and high ascii characters. + - Removed gc destructor functions, we can do it in the gc function itself. + - Removed wxLua_AddTrackedObject functions, use wxLuaState::AddTrackedObject. version 2.8.0.0 (released 24/12/2006) |