Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1213/wxLua/modules/wxluasocket/src
Modified Files:
wxluasocket_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: wxluasocket_bind.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/src/wxluasocket_bind.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** wxluasocket_bind.cpp 5 Oct 2006 05:10:47 -0000 1.7
--- wxluasocket_bind.cpp 1 Dec 2006 06:25:47 -0000 1.8
***************
*** 156,166 ****
{
m_nameSpace = wxT("wx");
! pfGetClassList = wxLuaGetClassList_wxluasocket;
! pfGetDefineList = wxLuaGetDefineList_wxluasocket;
! pfGetStringList = wxLuaGetStringList_wxluasocket;
! pfGetEventList = wxLuaGetEventList_wxluasocket;
! pfGetObjectList = wxLuaGetObjectList_wxluasocket;
! pfGetBuiltinList = wxLuaGetFunctionList_wxluasocket;
! Initialize();
}
--- 156,165 ----
{
m_nameSpace = wxT("wx");
! m_classList = wxLuaGetClassList_wxluasocket(m_classCount);
! m_defineList = wxLuaGetDefineList_wxluasocket(m_defineCount);
! m_stringList = wxLuaGetStringList_wxluasocket(m_stringCount);
! m_eventList = wxLuaGetEventList_wxluasocket(m_eventCount);
! m_objectList = wxLuaGetObjectList_wxluasocket(m_objectCount);
! m_functionList = wxLuaGetFunctionList_wxluasocket(m_functionCount);
}
|