]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/scrtimer.h
compilation fix for Borland C++
[wxWidgets.git] / include / wx / univ / scrtimer.h
index 35e3505ab477f8d381203224b9b753b3d033f18d..a94c528f7f3c0ca9852544fa0a02bf73d1eb97f0 100644 (file)
@@ -9,8 +9,15 @@
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
+#ifndef _WX_UNIV_SCRTIMER_H
+#define _WX_UNIV_SCRTIMER_H
+
 // NB: this class is implemented in scrolbar.cpp
 
+#include "wx/defs.h"
+
+#if wxUSE_TIMER
+
 #include "wx/timer.h"
 
 // ----------------------------------------------------------------------------
@@ -32,10 +39,13 @@ public:
 
 protected:
     // to implement in derived classes: perform the scroll action and return
-    // TRUE to continue scrolling or FALSE to stop
+    // true to continue scrolling or false to stop
     virtual bool DoNotify() = 0;
 
     // should we skip the next timer event?
     bool m_skipNext;
 };
 
+#endif // wxUSE_TIMER
+
+#endif // _WX_UNIV_SCRTIMER_H