]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/baseunix.cpp
fix compilation after r50329
[wxWidgets.git] / src / unix / baseunix.cpp
index 8f6345561842c4804830d96d3bb246925006158b..f675818f4327fd7b5023e268aa73ae7f4eb0263c 100644 (file)
@@ -32,6 +32,9 @@
 
 #include "wx/apptrait.h"
 #include "wx/unix/execute.h"
+#include "wx/evtloop.h"
+
+#include "wx/unix/private/timer.h"
 
 // for waitpid()
 #include <sys/types.h>
@@ -81,3 +84,15 @@ wxConsoleAppTraits::WaitForChild(wxExecuteData& execData)
     return exitcode;
 }
 
+#if wxUSE_TIMER
+
+wxTimerImpl *wxConsoleAppTraits::CreateTimerImpl(wxTimer *timer)
+{
+    // this doesn't work yet as there is no main loop in console applications
+    // (but it will be added later)
+    return new wxUnixTimerImpl(timer);
+}
+
+#endif // wxUSE_TIMER
+
+//  Note: wxConsoleAppTraits::CreateEventLoop() is defined in evtloopunix.cpp!