Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1159/wxLua/modules/wxluasocket/src
Modified Files:
wxluasocket_bind.cpp
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: wxluasocket_bind.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxluasocket_bind.cpp,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** wxluasocket_bind.cpp 24 Jan 2008 00:18:19 -0000 1.27
--- wxluasocket_bind.cpp 25 Jan 2008 23:50:54 -0000 1.28
***************
*** 163,172 ****
}
! void wxLuaBinding_wxluasocket::PreRegister(const wxLuaState& , int )
! {
! }
! void wxLuaBinding_wxluasocket::PostRegister(const wxLuaState&, int )
! {
! }
// ---------------------------------------------------------------------------
--- 163,167 ----
}
!
// ---------------------------------------------------------------------------
|