Update of /cvsroot/wxlua/wxLua/modules/wxbindstc/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30959/wxLua/modules/wxbindstc/include
Modified Files:
wxbind.h
Log Message:
Fix a number of bugs with the new bindings
fix override wxConfig::Get
fix looking up overloaded static and non static class member functions
fix looking up class member functions overloaded from a base class
Index: wxbind.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbindstc/include/wxbind.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** wxbind.h 31 May 2007 17:18:53 -0000 1.21
--- wxbind.h 5 Jun 2007 21:07:24 -0000 1.22
***************
*** 26,32 ****
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
! #if WXLUA_BINDING_VERSION > 7
# error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings."
! #endif //WXLUA_BINDING_VERSION > 7
// ---------------------------------------------------------------------------
--- 26,32 ----
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
! #if WXLUA_BINDING_VERSION > 8
# error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings."
! #endif //WXLUA_BINDING_VERSION > 8
// ---------------------------------------------------------------------------
|