(real) compilation fix after previous commit(s)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19679 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-03-21 21:04:31 +00:00
parent e38b6ea8d2
commit ee9768c9e0

View File

@@ -91,8 +91,9 @@ void wxTimerScheduler::QueueTimer(wxTimerDesc *desc, wxTimerTick_t when)
desc->shotTime = when; desc->shotTime = when;
desc->running = TRUE; desc->running = TRUE;
wxLogTrace( wxT("timer"), wxT("queued timer %p at tick %ld"), wxLogTrace( wxT("timer"),
desc->timer, (long) when); wxT("queued timer %p at tick %") wxLongLongFmtSpec _T("d"),
desc->timer, when.GetValue());
if ( m_timers ) if ( m_timers )
{ {
@@ -145,8 +146,8 @@ void wxTimerScheduler::NotifyTimers()
if ( !timerDeleted ) if ( !timerDeleted )
{ {
wxLogTrace( wxT("timer"), wxLogTrace( wxT("timer"),
wxT("notified timer %p sheduled for %" wxLongLongFmtSpec), wxT("notified timer %p sheduled for %") wxLongLongFmtSpec _T("d"),
desc->timer, desc->shotTime ); desc->timer, desc->shotTime.GetValue() );
desc->deleteFlag = NULL; desc->deleteFlag = NULL;
if ( !oneShot ) if ( !oneShot )