implemented wxPopupWindow for wxDFB; added wxNonOwnedWindow as base class for wxTopLevelWindow and wxPopupWindow

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44291 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2007-01-22 15:13:15 +00:00
parent c04c7a3d0a
commit 0edbcd6041

View File

@ -29,6 +29,7 @@
#include "wx/timer.h"
#include "wx/private/socketevtdispatch.h"
#include "wx/dfb/private.h"
#include "wx/nonownedwnd.h"
#define TRACE_EVENTS _T("events")
@ -166,7 +167,7 @@ void wxEventLoop::HandleDFBEvent(const wxDFBEvent& event)
case DFEC_WINDOW:
{
wxDFBWindowEvent winevent(((const DFBEvent&)event).window);
wxTopLevelWindowDFB::HandleDFBWindowEvent(winevent);
wxNonOwnedWindow::HandleDFBWindowEvent(winevent);
break;
}