Update of /cvsroot/wxlua/wxLua/modules/wxbind/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30959/wxLua/modules/wxbind/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/wxbind/include/wxbind.h,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -d -r1.65 -r1.66
*** wxbind.h 31 May 2007 17:18:47 -0000 1.65
--- wxbind.h 5 Jun 2007 21:07:20 -0000 1.66
***************
*** 43,49 ****
// 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
// ---------------------------------------------------------------------------
--- 43,49 ----
// 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
// ---------------------------------------------------------------------------
|