Update of /cvsroot/wxlua/wxLua/docs
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1159/wxLua/docs
Modified Files:
changelog.txt
Log Message:
- Removed the wxLuaBinding::PreRegister() and PostRegister() functions and
made RegisterBinding() virtual
Note: wxLuaBinding::RegisterBinding() now leaves the Lua table that the
binding objects were installed into on the stack. You must pop it.
* The rules.lua for genwxbind.lua now uses wxLuaBinding_class_declaration and
wxLuaBinding_class_implementation to replace wxLuaBinding_preregister and
wxLuaBinding_postregister. You may now add whatever you like to the class
declaration and implementation source code.
Updated to Lua 5.1.3 official
Index: changelog.txt
===================================================================
RCS file: /cvsroot/wxlua/wxLua/docs/changelog.txt,v
retrieving revision 1.60
retrieving revision 1.61
diff -C2 -d -r1.60 -r1.61
*** changelog.txt 24 Jan 2008 00:19:07 -0000 1.60
--- changelog.txt 25 Jan 2008 23:50:49 -0000 1.61
***************
*** 122,126 ****
each wxWidgets library when --enable-wxbind* options are left in "auto" mode
! * Updated Lua to 5.1.3-rc1
- Added static bool wxLuaState::sm_wxAppMainLoop_will_run so that Lua code
--- 122,126 ----
each wxWidgets library when --enable-wxbind* options are left in "auto" mode
! * Updated Lua to 5.1.3
- Added static bool wxLuaState::sm_wxAppMainLoop_will_run so that Lua code
***************
*** 138,145 ****
--- 138,155 ----
to FindBindXXX() since they no longer needed the extra wxLuaBindingList parameter
and they had the same signature as the existing GetBindXXX() functions.
+ Removed the wxLuaBinding::Clone() function as it is no longer used.
- Added wxLuaState::RegisterBinding(wxLuaBinding*) function to register
single bindings at a time. You may also reregister bindings, which means
that their metatable functions are simple rewritten.
+ - Removed the wxLuaBinding::PreRegister() and PostRegister() functions and
+ made RegisterBinding() virtual
+ Note: wxLuaBinding::RegisterBinding() now leaves the Lua table that the
+ binding objects were installed into on the stack. You must pop it.
+ * The rules.lua for genwxbind.lua now uses wxLuaBinding_class_declaration and
+ wxLuaBinding_class_implementation to replace wxLuaBinding_preregister and
+ wxLuaBinding_postregister. You may now add whatever you like to the class
+ declaration and implementation source code.
+
version 2.8.4.2
--------------------------------------------------------------------
|