Update of /cvsroot/wxlua/wxLua/modules/wxbindstc/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1213/wxLua/modules/wxbindstc/src
Modified Files:
wxstc_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: wxstc_bind.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbindstc/src/wxstc_bind.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** wxstc_bind.cpp 26 Sep 2006 05:05:55 -0000 1.12
--- wxstc_bind.cpp 1 Dec 2006 06:25:47 -0000 1.13
***************
*** 1476,1486 ****
{
m_nameSpace = wxT("wx");
! pfGetClassList = wxLuaGetClassList_wxstc;
! pfGetDefineList = wxLuaGetDefineList_wxstc;
! pfGetStringList = wxLuaGetStringList_wxstc;
! pfGetEventList = wxLuaGetEventList_wxstc;
! pfGetObjectList = wxLuaGetObjectList_wxstc;
! pfGetBuiltinList = wxLuaGetFunctionList_wxstc;
! Initialize();
}
--- 1476,1485 ----
{
m_nameSpace = wxT("wx");
! m_classList = wxLuaGetClassList_wxstc(m_classCount);
! m_defineList = wxLuaGetDefineList_wxstc(m_defineCount);
! m_stringList = wxLuaGetStringList_wxstc(m_stringCount);
! m_eventList = wxLuaGetEventList_wxstc(m_eventCount);
! m_objectList = wxLuaGetObjectList_wxstc(m_objectCount);
! m_functionList = wxLuaGetFunctionList_wxstc(m_functionCount);
}
|