From: John L. <jr...@us...> - 2005-11-30 23:52:38
|
Update of /cvsroot/wxlua/wxLua/apps/wxluaedit/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7962/wxLua/apps/wxluaedit/src Modified Files: wxledit.cpp wxledit.h Log Message: get wxluaedit apps to work again Index: wxledit.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluaedit/src/wxledit.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wxledit.h 24 Nov 2005 06:38:17 -0000 1.1 --- wxledit.h 30 Nov 2005 23:52:30 -0000 1.2 *************** *** 26,29 **** --- 26,30 ---- #include "wx/stedit/stedit.h" #include "wx/stedit/steshell.h" + #include "wxlua/include/wxlintrp.h" enum *************** *** 108,112 **** void Init(); DECLARE_EVENT_TABLE(); ! DECLARE_CLASS(wxLuaShell); }; --- 109,113 ---- void Init(); DECLARE_EVENT_TABLE(); ! DECLARE_ABSTRACT_CLASS(wxLuaShell); }; *************** *** 145,149 **** private: DECLARE_EVENT_TABLE(); ! DECLARE_CLASS(wxLuaEditor); }; --- 146,150 ---- private: DECLARE_EVENT_TABLE(); ! DECLARE_ABSTRACT_CLASS(wxLuaEditor); }; Index: wxledit.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluaedit/src/wxledit.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wxledit.cpp 25 Nov 2005 03:03:10 -0000 1.2 --- wxledit.cpp 30 Nov 2005 23:52:30 -0000 1.3 *************** *** 29,35 **** #include "wxledit.h" - #include "wxlua/include/wxlintrp.h" #include "wxluadebug/include/staktree.h" ! #include "wxluadebug/include/debug.h" #include "../../../art/wxlua.xpm" --- 29,34 ---- #include "wxledit.h" #include "wxluadebug/include/staktree.h" ! #include "wxluadebug/include/wxldebug.h" #include "../../../art/wxlua.xpm" *************** *** 47,51 **** // wxLuaShell //----------------------------------------------------------------------------- ! IMPLEMENT_CLASS(wxLuaShell, wxSTEditorShell) BEGIN_EVENT_TABLE(wxLuaShell, wxSTEditorShell) --- 46,50 ---- // wxLuaShell //----------------------------------------------------------------------------- ! IMPLEMENT_ABSTRACT_CLASS(wxLuaShell, wxSTEditorShell) BEGIN_EVENT_TABLE(wxLuaShell, wxSTEditorShell) *************** *** 188,192 **** // wxLuaEditor //----------------------------------------------------------------------------- ! IMPLEMENT_CLASS(wxLuaEditor, wxSTEditor) BEGIN_EVENT_TABLE(wxLuaEditor, wxSTEditor) --- 187,191 ---- // wxLuaEditor //----------------------------------------------------------------------------- ! IMPLEMENT_ABSTRACT_CLASS(wxLuaEditor, wxSTEditor) BEGIN_EVENT_TABLE(wxLuaEditor, wxSTEditor) |