From: John L. <jr...@us...> - 2007-05-21 01:08:33
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14147/wxLua/modules/wxlua/include Modified Files: wxlstate.h Log Message: Remove all code in dservice as it wasn't used Removed m_pDerivedList and put derived lua functions into the lua registry index A little more cleanup in the socket and editor.wx.lua code. Index: wxlstate.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/include/wxlstate.h,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** wxlstate.h 8 May 2007 00:55:12 -0000 1.66 --- wxlstate.h 21 May 2007 01:07:59 -0000 1.67 *************** *** 232,236 **** wxEventType m_inEventType; // wxEventType set when in event, else wxEVT_NULL - wxLongToLongHashMap m_pDerivedList; // derived objects. wxLongToLongHashMap m_trackedObjects; // tracked objects. wxList m_callbackList; // event objects for wxLuaCallback --- 232,235 ---- *************** *** 681,685 **** // Is there a derived method given an object and and a method name. ! bool HasDerivedMethod(void *pObject, const char *method) const; // Find a derived method given an object and and a method name. // If the method can be found, return the wxLuaState it belongs to. --- 680,685 ---- // Is there a derived method given an object and and a method name. ! // If push_method then push the method onto the stack ! bool HasDerivedMethod(void *pObject, const char *method, bool push_method) const; // Find a derived method given an object and and a method name. // If the method can be found, return the wxLuaState it belongs to. |