// Forward declaration
class wxHtmlAppletWindow;
-
+class wxAppletEvent;
/*--------------------------- Class Definitions ---------------------------*/
/****************************************************************************
class wxApplet : public wxPanel {
private:
DECLARE_ABSTRACT_CLASS(wxApplet);
- DECLARE_EVENT_TABLE();
+ DECLARE_EVENT_TABLE()
protected:
//wxHtmlAppletWindow *m_parent;
virtual void OnHistoryBack() = 0;
// Handle messages from the wxAppletManager and other applets
- virtual void OnMessage(wxEvent& msg) = 0;
+ virtual void OnMessage(wxAppletEvent& msg) = 0;
};