]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/applet/applet.h
wxUniv build fix.
[wxWidgets.git] / contrib / include / wx / applet / applet.h
index f51a37049791972a63c94c2261e3ff9900e5954d..42c8e18dde8e40b8ab66c25028709a73250073db 100644 (file)
@@ -34,7 +34,7 @@
 
 // Forward declaration
 class wxHtmlAppletWindow;
-
+class wxAppletEvent;
 /*--------------------------- Class Definitions ---------------------------*/
 
 /****************************************************************************
@@ -44,7 +44,7 @@ Defines the abstract base class for wxApplet objects.
 class wxApplet : public wxPanel {
 private:
     DECLARE_ABSTRACT_CLASS(wxApplet);
-    DECLARE_EVENT_TABLE();
+    DECLARE_EVENT_TABLE()
 
 protected:
     //wxHtmlAppletWindow  *m_parent;
@@ -76,7 +76,7 @@ public:
     virtual void OnHistoryBack() = 0;
 
             // Handle messages from the wxAppletManager and other applets
-    virtual void OnMessage(wxEvent& msg) = 0;
+    virtual void OnMessage(wxAppletEvent& msg) = 0;
     };