From 53fef662b8c5a72c826cf9a2ad103653f266b08c Mon Sep 17 00:00:00 2001
From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= <vslavik@fastmail.fm>
Date: Thu, 19 Jun 2003 22:33:00 +0000
Subject: [PATCH] quick and dirty fix for wxMGL compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21264 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 src/generic/timer.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/generic/timer.cpp b/src/generic/timer.cpp
index f38b03600e..46fbe6a0c3 100644
--- a/src/generic/timer.cpp
+++ b/src/generic/timer.cpp
@@ -91,9 +91,11 @@ void wxTimerScheduler::QueueTimer(wxTimerDesc *desc, wxTimerTick_t when)
     desc->shotTime = when;
     desc->running = TRUE;
 
+#ifndef __WXMGL__
     wxLogTrace( wxT("timer"),
                 wxT("queued timer %p at tick %") wxLongLongFmtSpec _T("d"), 
                desc->timer,  when.GetValue());
+#endif
 
     if ( m_timers )
     {
@@ -145,9 +147,11 @@ void wxTimerScheduler::NotifyTimers()
             
             if ( !timerDeleted )
             {
+#ifndef __WXMGL__
                 wxLogTrace( wxT("timer"),
                             wxT("notified timer %p sheduled for %") wxLongLongFmtSpec _T("d"), 
                             desc->timer, desc->shotTime.GetValue() );
+#endif
 
                 desc->deleteFlag = NULL;
                 if ( !oneShot )
-- 
2.47.2