From: John L. <jr...@us...> - 2006-09-05 21:48:15
|
Update of /cvsroot/wxlua/wxLua/apps/wxlua/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30388/wxLua/apps/wxlua/src Modified Files: lconsole.h wxlua.h Log Message: cleanup #includes to ensure that defs get included first fix DLLIMPEXP for the modules to correctly use the right one per module Index: lconsole.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxlua/src/lconsole.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lconsole.h 15 May 2006 04:48:37 -0000 1.5 --- lconsole.h 5 Sep 2006 21:48:10 -0000 1.6 *************** *** 28,32 **** void FillListbox(); ! private: wxLuaState m_wxlState; wxListBox* m_listBox; --- 28,32 ---- void FillListbox(); ! protected: wxLuaState m_wxlState; wxListBox* m_listBox; *************** *** 48,52 **** void DisplayText(wxString msg, bool fError = false); ! private: void OnCloseWindow(wxCloseEvent& event); void OnEraseBackground(wxEraseEvent& WXUNUSED(event)) {} --- 48,52 ---- void DisplayText(wxString msg, bool fError = false); ! protected: void OnCloseWindow(wxCloseEvent& event); void OnEraseBackground(wxEraseEvent& WXUNUSED(event)) {} Index: wxlua.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxlua/src/wxlua.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** wxlua.h 15 May 2006 04:48:37 -0000 1.16 --- wxlua.h 5 Sep 2006 21:48:10 -0000 1.17 *************** *** 22,28 **** class WXDLLIMPEXP_WXLUA wxLuaEvent; class LuaHandler; - class WXDLLIMPEXP_WXLUA wxLuaStackDialog; - class WXDLLIMPEXP_WXLUA wxLuaDebugEvent; // ---------------------------------------------------------------------------- --- 22,28 ---- class WXDLLIMPEXP_WXLUA wxLuaEvent; + class WXDLLIMPEXP_WXLUADEBUG wxLuaStackDialog; + class WXDLLIMPEXP_WXLUASOCKET wxLuaDebugEvent; class LuaHandler; // ---------------------------------------------------------------------------- |