fix typo: the leave/enter order for the m_handlersWithPendingEventsLocker critical section was flipped
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -119,7 +119,7 @@ void wxEventLoopBase::ProcessPendingEvents()
|
|||||||
{
|
{
|
||||||
// In ProcessPendingEvents(), new handlers might be added
|
// In ProcessPendingEvents(), new handlers might be added
|
||||||
// and we can safely leave the critical section here.
|
// and we can safely leave the critical section here.
|
||||||
wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker);
|
wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker);
|
||||||
|
|
||||||
// NOTE: we always call ProcessPendingEvents() on the first event handler
|
// NOTE: we always call ProcessPendingEvents() on the first event handler
|
||||||
// with pending events because handlers auto-remove themselves
|
// with pending events because handlers auto-remove themselves
|
||||||
@@ -127,7 +127,7 @@ void wxEventLoopBase::ProcessPendingEvents()
|
|||||||
// more pending events.
|
// more pending events.
|
||||||
m_handlersWithPendingEvents[0]->ProcessPendingEvents();
|
m_handlersWithPendingEvents[0]->ProcessPendingEvents();
|
||||||
|
|
||||||
wxLEAVE_CRIT_SECT(m_handlersWithPendingEventsLocker);
|
wxENTER_CRIT_SECT(m_handlersWithPendingEventsLocker);
|
||||||
}
|
}
|
||||||
|
|
||||||
// now the wxHandlersWithPendingEvents is surely empty; however some event
|
// now the wxHandlersWithPendingEvents is surely empty; however some event
|
||||||
|
Reference in New Issue
Block a user