git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11792
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#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
//-----------------------------------------------------------------------------
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;
}