]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/timer.h
Augmented version to b5
[wxWidgets.git] / include / wx / msw / timer.h
index 1db218cbfca63afac0ed7ccd2e50bb930492083a..8ce875f6574e7e2cb7f7de996da76bcaa6a2d8d0 100644 (file)
@@ -20,6 +20,8 @@
 
 class WXDLLEXPORT wxTimer : public wxObject
 {
+friend void wxProcessTimer(wxTimer& timer);
+
 public:
     wxTimer();
     ~wxTimer();
@@ -34,7 +36,7 @@ public:
     int Interval() const { return milli; };
     bool OneShot() const { return oneShot; }
 
-public:
+protected:
     bool oneShot ;
     int  milli ;
     int  lastMilli ;