added at least some stderr support to wxMGL which suffers badly from MGL's hostile takeover of stdin and stderr

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-10-02 22:21:05 +00:00
parent 7995616276
commit 2ec3892d77

View File

@@ -18,12 +18,14 @@
#pragma hdrstop #pragma hdrstop
#endif #endif
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include "wx/settings.h" #include "wx/settings.h"
#include "wx/module.h" #include "wx/module.h"
#include "wx/evtloop.h" #include "wx/evtloop.h"
#include "wx/frame.h" #include "wx/frame.h"
#include "wx/dialog.h" #include "wx/dialog.h"
#include "wx/log.h"
#include "wx/intl.h" #include "wx/intl.h"
#endif #endif
@@ -31,6 +33,12 @@
#include "wx/fontutil.h" #include "wx/fontutil.h"
#include "wx/mgl/private.h" #include "wx/mgl/private.h"
#define MGL_DEBUG
#if defined(MGL_DEBUG) && !defined(__WXDEBUG__)
#undef MGL_DEBUG
#endif
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Global data // Global data
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@@ -146,6 +154,12 @@ bool wxApp::OnInitGui()
if ( !wxAppBase::OnInitGui() ) if ( !wxAppBase::OnInitGui() )
return FALSE; 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; return TRUE;
} }