X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0470b1e6fe7a49bb87756006ef9fc232e3dbaaf8..d7eee191c55687785a2be927fd387d10514cdf1b:/include/wx/motif/timer.h

diff --git a/include/wx/motif/timer.h b/include/wx/motif/timer.h
index d6d6df2455..28c0d776b4 100644
--- a/include/wx/motif/timer.h
+++ b/include/wx/motif/timer.h
@@ -21,7 +21,9 @@ class WXDLLEXPORT wxTimer : public wxTimerBase
 friend void wxTimerCallback(wxTimer * timer);
 
 public:
-    wxTimer();
+    wxTimer() { Init(); }
+    wxTimer(wxEvtHandler *owner, int id = -1) : wxTimerBase(owner, id)
+        { Init(); }
     ~wxTimer();
 
     virtual bool Start(int milliseconds = -1, bool oneShot = FALSE);
@@ -30,6 +32,8 @@ public:
     virtual bool IsRunning() const { return m_id != 0; }
 
 protected:
+    void Init();
+
     long m_id;
 
 private: