don't create (and leak) wxLogStderr in wxEntryReal(), we now create wxLogBuffer in DoCommonPreInit()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34575 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-06-07 18:24:23 +00:00
parent be2572a325
commit 338026503b

View File

@ -400,12 +400,6 @@ void wxEntryCleanup()
int wxEntryReal(int& argc, wxChar **argv)
{
#if wxUSE_LOG
// Create a non-GUI log target, to be used until GUI (if any) is ready.
// Target will be reset by wxAppConsole::Initialize, when GUI logging will work.
wxLog::GetActiveTarget();
#endif
// library initialization
if ( !wxEntryStart(argc, argv) )
{