From: John L. <jr...@us...> - 2006-12-13 06:57:54
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv18568/wxLua/modules/wxluadebug/src Modified Files: staktree.cpp Log Message: cleanup genwxbind.lua, better var names, builtin -> number or function cleanup wxlprint, wxlhtmlwin Index: staktree.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/staktree.cpp,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** staktree.cpp 12 Dec 2006 01:23:40 -0000 1.33 --- staktree.cpp 13 Dec 2006 06:57:50 -0000 1.34 *************** *** 35,40 **** BEGIN_EVENT_TABLE(wxLuaStackDialog, wxDialog) ! EVT_COMBOBOX( ID_WXLUA_STACKDIALOG_COMBO, wxLuaStackDialog::OnSelectStack) ! EVT_TREE_ITEM_EXPANDING(ID_WXLUA_STACKDIALOG_STACKTREE, wxLuaStackDialog::OnItemExpanding) END_EVENT_TABLE() --- 35,40 ---- BEGIN_EVENT_TABLE(wxLuaStackDialog, wxDialog) ! EVT_COMBOBOX( ID_WXLUA_STACKDIALOG_COMBO, wxLuaStackDialog::OnSelectStack) ! EVT_TREE_ITEM_EXPANDING(ID_WXLUA_STACKDIALOG_STACKTREE, wxLuaStackDialog::OnItemExpanding) END_EVENT_TABLE() *************** *** 54,61 **** } ! bool wxLuaStackDialog::Create(wxWindow* parent, wxWindowID id, const wxString& title, ! const wxPoint& pos, const wxSize& size, ! const wxLuaState& wxlState) { m_wxlState = wxlState; --- 54,61 ---- } ! bool wxLuaStackDialog::Create(const wxLuaState& wxlState, ! wxWindow* parent, wxWindowID id, const wxString& title, ! const wxPoint& pos, const wxSize& size) { m_wxlState = wxlState; |