compilation fix for wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10959 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-07-10 22:48:27 +00:00
parent c9cdd31d81
commit 8f0db49cd2
2 changed files with 6 additions and 2 deletions

View File

@@ -141,8 +141,10 @@ static void wxInsertChildInDialog( wxPopupWindow* parent, wxWindow* child )
// wxPopupWindow
//-----------------------------------------------------------------------------
BEGIN_EVENT_TABLE(wxPopupWindow, wxPopupWindowBase)
BEGIN_EVENT_TABLE(wxPopupWindow,wxPopupWindowBase)
#ifdef __WXUNIVERSAL__
EVT_SIZE(wxPopupWindow::OnSize)
#endif
END_EVENT_TABLE()
IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow, wxWindow)