(blind) compilation fix after last commit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19678 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -64,7 +64,7 @@ public:
|
|||||||
wxTimer *timer;
|
wxTimer *timer;
|
||||||
bool running;
|
bool running;
|
||||||
wxTimerDesc *next, *prev;
|
wxTimerDesc *next, *prev;
|
||||||
unsigned long shotTime;
|
wxTimerTick_t shotTime;
|
||||||
volatile bool *deleteFlag; // see comment in ~wxTimer
|
volatile bool *deleteFlag; // see comment in ~wxTimer
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -144,8 +144,9 @@ void wxTimerScheduler::NotifyTimers()
|
|||||||
|
|
||||||
if ( !timerDeleted )
|
if ( !timerDeleted )
|
||||||
{
|
{
|
||||||
wxLogTrace( wxT("timer"), wxT("notified timer %p sheduled for %ld"),
|
wxLogTrace( wxT("timer"),
|
||||||
desc->timer, (long) desc->shotTime);
|
wxT("notified timer %p sheduled for %" wxLongLongFmtSpec),
|
||||||
|
desc->timer, desc->shotTime );
|
||||||
|
|
||||||
desc->deleteFlag = NULL;
|
desc->deleteFlag = NULL;
|
||||||
if ( !oneShot )
|
if ( !oneShot )
|
||||||
|
Reference in New Issue
Block a user