]> git.saurik.com Git - wxWidgets.git/commitdiff
use wxEventLoop in wxApp under wxMSW; factored out common code from wxX11/wxMotif...
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Sep 2003 20:03:13 +0000 (20:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Sep 2003 20:03:13 +0000 (20:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/os2/app.cpp

index c131905de877243a9e21b8c59510e383246aecc4..50a810d166a01d6b413612e7074cb0158d64256b 100644 (file)
@@ -654,9 +654,9 @@ bool wxApp::Pending()
     return (::WinPeekMsg(vHabmain, (PQMSG)&svCurrentMsg, (HWND)NULL, 0, 0, PM_NOREMOVE) != 0);
 } // end of wxApp::Pending
 
-void wxApp::Dispatch()
+bool wxApp::Dispatch()
 {
-    DoMessage();
+    return DoMessage();
 }
 
 //////////////////////////////////////////////////////////////////////////////