From: John L. <jr...@us...> - 2005-12-18 18:04:47
|
Update of /cvsroot/wxlua/wxLua/modules/wxlua/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7980/wxLua/modules/wxlua/src Modified Files: wxlcallb.cpp wxlintrp.cpp Log Message: added doxygen config file, fixed int <-> wxWindowId Index: wxlintrp.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/src/wxlintrp.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** wxlintrp.cpp 16 Dec 2005 05:12:26 -0000 1.9 --- wxlintrp.cpp 18 Dec 2005 18:04:38 -0000 1.10 *************** *** 366,370 **** DEFINE_LOCAL_EVENT_TYPE(wxEVT_LUA_SHUTDOWN) ! wxLuaEvent::wxLuaEvent(wxEventType commandType, int id, wxLuaInterpreter *interpreter) : wxNotifyEvent(commandType, id) { --- 366,370 ---- DEFINE_LOCAL_EVENT_TYPE(wxEVT_LUA_SHUTDOWN) ! wxLuaEvent::wxLuaEvent(wxEventType commandType, wxWindowID id, wxLuaInterpreter *interpreter) : wxNotifyEvent(commandType, id) { *************** *** 383,387 **** Init(); } ! wxLuaInterpreter::wxLuaInterpreter(wxEvtHandler *handler, int id) : wxObject() { Init(); --- 383,387 ---- Init(); } ! wxLuaInterpreter::wxLuaInterpreter(wxEvtHandler *handler, wxWindowID id) : wxObject() { Init(); *************** *** 409,413 **** } ! bool wxLuaInterpreter::Create(lua_State *inL, wxEvtHandler *handler, int id) { if (Ok() && !Destroy(true)) --- 409,413 ---- } ! bool wxLuaInterpreter::Create(lua_State *inL, wxEvtHandler *handler, wxWindowID id) { if (Ok() && !Destroy(true)) Index: wxlcallb.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxlua/src/wxlcallb.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** wxlcallb.cpp 12 Dec 2005 05:16:32 -0000 1.9 --- wxlcallb.cpp 18 Dec 2005 18:04:38 -0000 1.10 *************** *** 36,40 **** wxLuaCallback::wxLuaCallback( const wxLuaState& state, int theRoutine, ! int id, wxEventType eventType, wxEvtHandler *pEvtHandler ) --- 36,40 ---- wxLuaCallback::wxLuaCallback( const wxLuaState& state, int theRoutine, ! wxWindowID id, wxEventType eventType, wxEvtHandler *pEvtHandler ) *************** *** 159,164 **** IMPLEMENT_ABSTRACT_CLASS(wxLuaDestroyCallback, wxEvtHandler) ! wxLuaDestroyCallback::wxLuaDestroyCallback(const wxLuaState& state, int id, ! wxEvtHandler *pHandler, int iTag) : m_wxlState(state), m_pHandler(pHandler), m_id(id) { --- 159,166 ---- IMPLEMENT_ABSTRACT_CLASS(wxLuaDestroyCallback, wxEvtHandler) ! wxLuaDestroyCallback::wxLuaDestroyCallback(const wxLuaState& state, ! wxWindowID id, ! wxEvtHandler *pHandler, ! int iTag) : m_wxlState(state), m_pHandler(pHandler), m_id(id) { |