X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0470b1e6fe7a49bb87756006ef9fc232e3dbaaf8..df3dc50b647ade6561b30c46e4d27c9a64ec66e8:/src/motif/timer.cpp

diff --git a/src/motif/timer.cpp b/src/motif/timer.cpp
index 41e30b7ae3..570e4186f9 100644
--- a/src/motif/timer.cpp
+++ b/src/motif/timer.cpp
@@ -17,13 +17,17 @@
 #include "wx/app.h"
 #include "wx/list.h"
 
+#ifdef __VMS__
+#pragma message disable nosimpint
+#endif
 #include <Xm/Xm.h>
+#ifdef __VMS__
+#pragma message enable nosimpint
+#endif
 
 #include "wx/motif/private.h"
 
-#if !USE_SHARED_LIBRARY
 IMPLEMENT_ABSTRACT_CLASS(wxTimer, wxObject)
-#endif
 
 static wxList wxTimerList(wxKEY_INTEGER);
 
@@ -47,9 +51,10 @@ void wxTimerCallback (wxTimer * timer)
   timer->Notify();
 }
 
-wxTimer::wxTimer()
+void wxTimer::Init()
 {
     m_id = 0;
+    m_milli = 1000;
 }
 
 wxTimer::~wxTimer()