From 4a7ebfc1f25e803eed43be420226569edd34c194 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Sat, 11 Aug 2007 01:28:42 +0000 Subject: [PATCH] Use wxLogStdErr in preference to wxLogGui on wxCocoa. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48018 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/appcmn.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common/appcmn.cpp b/src/common/appcmn.cpp index cf61da7e89..e25528a638 100644 --- a/src/common/appcmn.cpp +++ b/src/common/appcmn.cpp @@ -433,7 +433,9 @@ bool wxAppBase::SendIdleEvents(wxWindow* win, wxIdleEvent& event) 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!