X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/863136dea65adc3103b7c94272d0ed6e12346de0..6f054ac5e8f4d9daf9f4d7fabfa285cb7b148d17:/src/gtk/app.cpp diff --git a/src/gtk/app.cpp b/src/gtk/app.cpp index e58a9c8e97..21748cb2e9 100644 --- a/src/gtk/app.cpp +++ b/src/gtk/app.cpp @@ -567,9 +567,11 @@ bool wxApp::Pending() return (gtk_events_pending() > 0); } -void wxApp::Dispatch() +bool wxApp::Dispatch() { gtk_main_iteration(); + + return true; } bool wxApp::Initialize(int& argc, wxChar **argv)