]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/timer.h
allow passing wx[W]CharBuffer to wx vararg templates
[wxWidgets.git] / include / wx / timer.h
index b0efc9d3ad305f7a884b6cfb5e4d6172f05c25af..c79633c6c039c06d3bc353c0d964edcc83de1119 100644 (file)
@@ -21,6 +21,7 @@
 #include "wx/longlong.h"
 #include "wx/event.h"
 #include "wx/stopwatch.h" // for backwards compatibility
+#include "wx/window.h"    // only for NewControlId()
 
 
 // more readable flags for Start():
@@ -51,8 +52,12 @@ public:
 
     // same as ctor above
     void SetOwner(wxEvtHandler *owner, int timerid = wxID_ANY)
-        { m_owner = owner; m_idTimer = timerid == wxID_ANY ? wxNewId() : timerid; }
-    wxEvtHandler * GetOwner() const { return m_owner; }
+    {
+        m_owner = owner;
+        m_idTimer = timerid == wxID_ANY ? wxWindow::NewControlId() : timerid;
+    }
+
+    wxEvtHandler *GetOwner() const { return m_owner; }
 
     virtual ~wxTimerBase();