]> git.saurik.com Git - wxWidgets.git/commitdiff
implemented wxPopupWindow for wxDFB; added wxNonOwnedWindow as base class for wxTopLe...
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 22 Jan 2007 15:13:15 +0000 (15:13 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 22 Jan 2007 15:13:15 +0000 (15:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44291 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/dfb/evtloop.cpp

index 3cc18ac29091a7979c572b1730813172744f1d76..ee7154ff1ef0dd2b9d6c66d0d3cd4de023f5f5c8 100644 (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;
         }