+    m_id = XtAppAddTimeOut((XtAppContext) wxTheApp->GetAppContext(),
+                            m_milli,
+                            (XtTimerCallbackProc) wxTimerCallback,
+                            (XtPointer) this);
+}
+
+bool wxMotifTimerImpl::Start(int milliseconds, bool mode)
+{
+    if ( !wxTimerImpl::Start(milliseconds, mode) )
+        return false;
+
+    if ( gs_timers.find(this) == gs_timers.end() )
+        gs_timers[this] = this;