]> git.saurik.com Git - wxWidgets.git/commitdiff
added at least some stderr support to wxMGL which suffers badly from MGL's hostile...
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 2 Oct 2001 22:21:05 +0000 (22:21 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 2 Oct 2001 22:21:05 +0000 (22:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mgl/app.cpp

index c5535f75c815bd14af16e932fef0af43fb714716..c5ff7897f071442519568a6816b73cee32fda63c 100644 (file)
     #pragma hdrstop
 #endif
 
+
 #ifndef WX_PRECOMP
     #include "wx/settings.h"
     #include "wx/module.h"
     #include "wx/evtloop.h"
     #include "wx/frame.h"
     #include "wx/dialog.h"
+    #include "wx/log.h"
     #include "wx/intl.h"
 #endif
 
 #include "wx/fontutil.h"
 #include "wx/mgl/private.h"
 
+#define MGL_DEBUG
+
+#if defined(MGL_DEBUG) && !defined(__WXDEBUG__)
+#undef MGL_DEBUG
+#endif
+
 //-----------------------------------------------------------------------------
 // Global data
 //-----------------------------------------------------------------------------
@@ -146,6 +154,12 @@ bool wxApp::OnInitGui()
     if ( !wxAppBase::OnInitGui() )
         return FALSE;
 
+#ifdef MGL_DEBUG
+    // That damn MGL redirects stdin and stdout to physical console
+    FILE *file = fopen("stderr", "wt");
+    wxLog::SetActiveTarget(new wxLogStderr(file));
+#endif
+
     return TRUE;
 }