Update of /cvsroot/wxlua/wxLua/modules/wxbind/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1213/wxLua/modules/wxbind/src
Modified Files:
wx_bind.cpp
Log Message:
removed TRUE/FALSE pushed into lua since lua has true/false now
removed pointers to functions in wxLuaBinding, just use the member vars
Index: wx_bind.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/wx_bind.cpp,v
retrieving revision 1.62
retrieving revision 1.63
diff -C2 -d -r1.62 -r1.63
*** wx_bind.cpp 22 Nov 2006 21:13:56 -0000 1.62
--- wx_bind.cpp 1 Dec 2006 06:25:46 -0000 1.63
***************
*** 6296,6306 ****
{
m_nameSpace = wxT("wx");
! pfGetClassList = wxLuaGetClassList_wx;
! pfGetDefineList = wxLuaGetDefineList_wx;
! pfGetStringList = wxLuaGetStringList_wx;
! pfGetEventList = wxLuaGetEventList_wx;
! pfGetObjectList = wxLuaGetObjectList_wx;
! pfGetBuiltinList = wxLuaGetFunctionList_wx;
! Initialize();
}
--- 6296,6305 ----
{
m_nameSpace = wxT("wx");
! m_classList = wxLuaGetClassList_wx(m_classCount);
! m_defineList = wxLuaGetDefineList_wx(m_defineCount);
! m_stringList = wxLuaGetStringList_wx(m_stringCount);
! m_eventList = wxLuaGetEventList_wx(m_eventCount);
! m_objectList = wxLuaGetObjectList_wx(m_objectCount);
! m_functionList = wxLuaGetFunctionList_wx(m_functionCount);
}
|