#include "wx/apptrait.h"
#include "wx/evtloop.h"
+#include "wx/motif/private/timer.h"
#include <string.h>
return wxPORT_MOTIF;
}
+wxEventLoopBase* wxGUIAppTraits::CreateEventLoop()
+{
+ return new wxEventLoop;
+}
+
+wxTimerImpl* wxGUIAppTraits::CreateTimerImpl(wxTimer* timer)
+{
+ return new wxMotifTimerImpl(timer);
+}
+
// ----------------------------------------------------------------------------
// display info
// ----------------------------------------------------------------------------
return wxEmptyString;
}
-XmString wxStringToXmString( const wxString& str )
-{
- return wxStringToXmString(str.mb_str());
-}
-
XmString wxStringToXmString( const char* str )
{
return XmStringCreateLtoR((char *)str, XmSTRING_DEFAULT_CHARSET);