Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14159/wxLua/modules/wxluasocket/include
Modified Files:
wxluasocket_bind.h
Log Message:
Changed the Delete() function from the %delete tag for classes to just
delete() to avoid any future name clashes since delete() is never allowed
to be a function name in C++.
Moved the wxStyledTextCtrl class and it's 1268 defines into the wxstc table.
Moved wxLuaObject, wxLuaDebugger (and friends) into the wxlua table and
added more functions for inspecting userdata and the bindings.
Fix mismatches between the bindings base classes and what they really are.
Index: wxluasocket_bind.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxluasocket_bind.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** wxluasocket_bind.h 13 Jun 2007 00:09:04 -0000 1.21
--- wxluasocket_bind.h 14 Jun 2007 01:23:20 -0000 1.22
***************
*** 27,33 ****
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
! #if WXLUA_BINDING_VERSION > 12
# error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings."
! #endif //WXLUA_BINDING_VERSION > 12
// ---------------------------------------------------------------------------
--- 27,33 ----
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
! #if WXLUA_BINDING_VERSION > 13
# error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings."
! #endif //WXLUA_BINDING_VERSION > 13
// ---------------------------------------------------------------------------
|