]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/timer.cpp
Add dependency on tabmdi.h
[wxWidgets.git] / src / mac / carbon / timer.cpp
index 1fa8fb492cd965b3610b78b27985a50be3211b52..3c576d0650f3af02cadce17bfce228dea1ee59b9 100644 (file)
@@ -6,21 +6,25 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:       wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
 
+#if wxUSE_TIMER
+
+#ifndef WX_PRECOMP
+    #include "wx/dynarray.h"
+#endif
+
 #include "wx/timer.h"
 
 #ifdef __WXMAC__
-#include "wx/mac/private.h"
+    #include "wx/mac/private.h"
 #endif
 
-#include "wx/dynarray.h"
-
 #ifndef __DARWIN__
-#include <Timer.h>
+    #include <Timer.h>
 #endif
 
 IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxEvtHandler)
@@ -213,4 +217,7 @@ void wxTimer::Stop()
     wxMacRemoveAllNotifiersForData( wxMacGetNotifierTable(), this );
 }
 
-#endif
+#endif // wxMAC_USE_CARBON_TIMER
+
+#endif // wxUSE_TIMER
+