Switched from wxUsleep to wxMilliSleep/wxMicroSleep.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -296,7 +296,7 @@ int wxEventLoop::Run()
|
||||
while ( !Pending() && m_impl->SendIdleMessage() )
|
||||
{
|
||||
wxTheApp->HandleSockets();
|
||||
wxUsleep(10);
|
||||
wxMilliSleep(10);
|
||||
}
|
||||
|
||||
wxTheApp->HandleSockets();
|
||||
@@ -309,7 +309,7 @@ int wxEventLoop::Run()
|
||||
}
|
||||
}
|
||||
else
|
||||
wxUsleep(10);
|
||||
wxMilliSleep(10);
|
||||
}
|
||||
|
||||
return m_impl->GetExitCode();
|
||||
|
||||
Reference in New Issue
Block a user