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

src/generic/timer.cpp

index 640ddfe53d1c2baeb773cecdb851f7f1a4ddf5ef..b2a1e92e016a38fe96994d4cf4a355fb13eeddb0 100644 (file)
@@ -64,7 +64,7 @@ public:
     wxTimer         *timer;
     bool             running;
     wxTimerDesc     *next, *prev;
-    unsigned long    shotTime;  
+    wxTimerTick_t    shotTime;  
     volatile bool   *deleteFlag; // see comment in ~wxTimer
 };
 
@@ -144,8 +144,9 @@ void wxTimerScheduler::NotifyTimers()
             
             if ( !timerDeleted )
             {
-                wxLogTrace( wxT("timer"), wxT("notified timer %p sheduled for %ld"), 
-                           desc->timer, (long) desc->shotTime);
+                wxLogTrace( wxT("timer"),
+                            wxT("notified timer %p sheduled for %" wxLongLongFmtSpec), 
+                            desc->timer, desc->shotTime );
 
                 desc->deleteFlag = NULL;
                 if ( !oneShot )