wxLog *wxGUIAppTraitsBase::CreateLogTarget()
{
-#if wxUSE_LOGGUI
+// DE: One day I'll remove this but right now the generic dialog used for this
+// just doesn't work right at all on wxCocoa.
+#if wxUSE_LOGGUI && !defined(__WXCOCOA__)
return new wxLogGui;
#else
// we must have something!
// wxMessageOutputMessageBox doesn't work under Motif
#ifdef __WXMOTIF__
return new wxMessageOutputLog;
- #else
+ #elif wxUSE_MSGDLG
return new wxMessageOutputMessageBox;
+ #else
+ return new wxMessageOutputStderr;
#endif
#endif // __UNIX__/!__UNIX__
}