]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/popupwin.cpp
implemented wxActivateEvent properly
[wxWidgets.git] / src / gtk1 / popupwin.cpp
index b61a31c7be194d4829e8d2c6d05c33d465e89359..bbfb93399de9a17eea19c114747768ec249871a0 100644 (file)
 #pragma implementation "popupwin.h"
 #endif
 
+#include "wx/defs.h"
+
+#if wxUSE_POPUPWIN
+
 #include "wx/popupwin.h"
 #include "wx/frame.h"
 #include "wx/app.h"
@@ -138,10 +142,12 @@ static void wxInsertChildInDialog( wxPopupWindow* parent, wxWindow* child )
 //-----------------------------------------------------------------------------
 
 BEGIN_EVENT_TABLE(wxPopupWindow,wxPopupWindowBase)
-    EVT_SIZE    (wxPopupWindow::OnSize)
+#ifdef __WXUNIVERSAL__
+    EVT_SIZE(wxPopupWindow::OnSize)
+#endif
 END_EVENT_TABLE()
 
-IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow,wxPopupWindowBase)
+IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow)
 
 bool wxPopupWindow::Create( wxWindow *parent, int style )
 {
@@ -332,3 +338,4 @@ bool wxPopupWindow::Show( bool show )
     return ret;
 }
 
+#endif // wxUSE_POPUPWIN