// Created: 01.06.01
// RCS-ID: $Id$
// Copyright: (c) 2002 Julian Smart
-// License: wxWindows licence
+// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// ============================================================================
OnExit();
int exitcode = m_impl->GetExitCode();
- delete m_impl;
- m_impl = NULL;
+ wxDELETE(m_impl);
return exitcode;
}
bool wxGUIEventLoop::Dispatch()
{
+ // see comment in wxEventLoopManual::ProcessEvents()
+ if ( wxTheApp )
+ wxTheApp->ProcessPendingEvents();
+
XEvent event;
// TODO allowing for threads, as per e.g. wxMSW