]> git.saurik.com Git - wxWidgets.git/commitdiff
(real) compilation fix after previous commit(s)
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 21 Mar 2003 21:04:31 +0000 (21:04 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 21 Mar 2003 21:04:31 +0000 (21:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19679 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/timer.cpp

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