Removed warnings from ipcbase.cpp

Removed extra wxYields from progress dialog
Yield on wxX11 yields twice


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16913 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-09-01 17:02:36 +00:00
parent a679468530
commit bbcd408aa7
5 changed files with 52 additions and 59 deletions

View File

@@ -90,8 +90,8 @@ void wxTimerScheduler::QueueTimer(wxTimerDesc *desc, unsigned long when)
desc->shotTime = when;
desc->running = TRUE;
wxLogTrace("timer", "queued timer %p at tick %i",
desc->timer, when);
wxLogTrace("timer", "queued timer %p at tick %ld",
desc->timer, (long) when);
if ( m_timers )
{
@@ -143,8 +143,8 @@ void wxTimerScheduler::NotifyTimers()
if ( !timerDeleted )
{
wxLogTrace("timer", "notified timer %p sheduled for %i",
desc->timer, desc->shotTime);
wxLogTrace("timer", "notified timer %p sheduled for %ld",
desc->timer, (long) desc->shotTime);
desc->deleteFlag = NULL;
if ( !oneShot )