Update of /cvsroot/wxlua/wxLua/apps/wxluacan/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1213/wxLua/apps/wxluacan/src
Modified Files:
wxluacan_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: wxluacan_bind.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/apps/wxluacan/src/wxluacan_bind.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** wxluacan_bind.cpp 28 Aug 2006 05:26:19 -0000 1.8
--- wxluacan_bind.cpp 1 Dec 2006 06:25:45 -0000 1.9
***************
*** 181,191 ****
{
m_nameSpace = wxT("wxluacan");
! pfGetClassList = wxLuaGetClassList_wxluacan;
! pfGetDefineList = wxLuaGetDefineList_wxluacan;
! pfGetStringList = wxLuaGetStringList_wxluacan;
! pfGetEventList = wxLuaGetEventList_wxluacan;
! pfGetObjectList = wxLuaGetObjectList_wxluacan;
! pfGetBuiltinList = wxLuaGetFunctionList_wxluacan;
! Initialize();
}
--- 181,190 ----
{
m_nameSpace = wxT("wxluacan");
! m_classList = wxLuaGetClassList_wxluacan(m_classCount);
! m_defineList = wxLuaGetDefineList_wxluacan(m_defineCount);
! m_stringList = wxLuaGetStringList_wxluacan(m_stringCount);
! m_eventList = wxLuaGetEventList_wxluacan(m_eventCount);
! m_objectList = wxLuaGetObjectList_wxluacan(m_objectCount);
! m_functionList = wxLuaGetFunctionList_wxluacan(m_functionCount);
}
|