From: John L. <jr...@us...> - 2005-11-25 02:43:09
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25355/wxLua/bindings/wxwidgets Modified Files: luasetup.h.in wx.rules wxlua.i Log Message: started to break up internal.cpp into wxlstate, wxlcallb... rename library.h/cpp to wxlhandl since it only contains wxLuaHandler remove wxLuaApp code, it doesn't exist anymore compiles and runs in linux Index: luasetup.h.in =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/luasetup.h.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** luasetup.h.in 6 Jun 2005 23:06:07 -0000 1.1 --- luasetup.h.in 25 Nov 2005 02:43:01 -0000 1.2 *************** *** 62,66 **** #define wxLUA_USE_wxListBox 1 #define wxLUA_USE_wxListCtrl 1 - #define wxLUA_USE_wxLuaApp 1 #define wxLUA_USE_wxLuaDebugServer 1 #define wxLUA_USE_wxLuaHtmlWindow 1 --- 62,65 ---- Index: wxlua.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/wxlua.i,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wxlua.i 23 Nov 2005 20:33:14 -0000 1.4 --- wxlua.i 25 Nov 2005 02:43:01 -0000 1.5 *************** *** 121,130 **** %endif wxLUA_USE_wxLuaHtmlWindow - %if wxLUA_USE_wxLuaApp - - %include "wxlua/include/library.h" - - %endif wxLUA_USE_wxLuaApp - /////////////////////////////////////////////////////////////////////////////// // wxLuaTreeItemData --- 121,124 ---- Index: wx.rules =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/wx.rules,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wx.rules 24 Nov 2005 06:38:17 -0000 1.4 --- wx.rules 25 Nov 2005 02:43:01 -0000 1.5 *************** *** 28,32 **** -- list of interface files to use to make the bindings ! interfaceFileList = { "appframe.i", --- 28,32 ---- -- list of interface files to use to make the bindings ! interfaceFileList = { "appframe.i", *************** *** 72,80 **** " if (registerTypes)\n", " {\n", ! " stateVars->m_wxNull = tnewtag(L);\n", " }\n", "\n", " tpushliteralstring(L, \"wxNull\");\n", ! " tpushusertag(L, NULL, stateVars->m_wxNull);\n", " lua_rawset(L, luaTable);\n", } --- 72,80 ---- " if (registerTypes)\n", " {\n", ! " stateVars->m_wxLuaNull = tnewtag(L);\n", " }\n", "\n", " tpushliteralstring(L, \"wxNull\");\n", ! " tpushusertag(L, NULL, stateVars->m_wxLuaNull);\n", " lua_rawset(L, luaTable);\n", } |