+int wxAppBase::FilterEvent(wxEvent& WXUNUSED(event))
+{
+ // process the events normally by default
+ return -1;
+}
+
+void wxAppBase::DoInit()
+{
+ if(wxMessageOutput::Get()) return;
+#if wxUSE_GUI
+ #ifdef __WXMOTIF__
+ wxMessageOutput::Set(new wxMessageOutputLog);
+ #else
+ wxMessageOutput::Set(new wxMessageOutputMessageBox);
+ #endif
+#else
+ wxMessageOutput::Set(new wxMessageOutputStderr);
+#endif
+}
+