From: John L. <jr...@us...> - 2006-05-24 04:50:32
|
Update of /cvsroot/wxlua/wxLua/apps/wxlua/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv4440/wxLua/apps/wxlua/src Modified Files: wxlua.cpp Log Message: move the wxLuaDebugSocket bindings to their own dir and out of wxWidgets bindings fix using more than two bindings with same namespace Index: wxlua.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxlua/src/wxlua.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** wxlua.cpp 15 May 2006 04:48:37 -0000 1.31 --- wxlua.cpp 24 May 2006 04:49:59 -0000 1.32 *************** *** 46,49 **** --- 46,50 ---- extern bool wxLuaBinding_wx_init(); extern bool wxLuaBinding_wxstc_init(); + extern bool wxLuaBinding_wxluasocket_init(); // --------------------------------------------------------------------------- *************** *** 191,194 **** --- 192,196 ---- wxLuaBinding_wx_init(); wxLuaBinding_wxstc_init(); + wxLuaBinding_wxluasocket_init(); m_wxlState = wxLuaState(this, -1); |