From: John L. <jr...@us...> - 2007-06-14 01:23:42
|
Update of /cvsroot/wxlua/wxLua/apps/wxluafreeze/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14159/wxLua/apps/wxluafreeze/src Modified Files: wxluafreeze.cpp Log Message: Changed the Delete() function from the %delete tag for classes to just delete() to avoid any future name clashes since delete() is never allowed to be a function name in C++. Moved the wxStyledTextCtrl class and it's 1268 defines into the wxstc table. Moved wxLuaObject, wxLuaDebugger (and friends) into the wxlua table and added more functions for inspecting userdata and the bindings. Fix mismatches between the bindings base classes and what they really are. Index: wxluafreeze.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluafreeze/src/wxluafreeze.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** wxluafreeze.cpp 27 Feb 2007 20:52:37 -0000 1.8 --- wxluafreeze.cpp 14 Jun 2007 01:23:06 -0000 1.9 *************** *** 35,38 **** --- 35,39 ---- // Declare the binding initialization functions as extern so we don't have to // #include the binding header for simplicity. + extern bool wxLuaBinding_wxlua_init(); extern bool wxLuaBinding_wx_init(); //extern bool wxLuaBinding_wxstc_init(); *************** *** 102,105 **** --- 103,107 ---- // Initialize wxLua by first attaching the bindings we want to use // note: make sure you link to the binding libraries + wxLuaBinding_wxlua_init(); wxLuaBinding_wx_init(); //wxLuaBinding_wxstc_init(); |