]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/appbase.cpp
implementation of the range insert for wxStringArray (patch 975003)
[wxWidgets.git] / src / common / appbase.cpp
index f8c77f53429bf497219d3b662aac4969cfb9639e..d15e4a5d415e8dc55bc86e2abfddd8a6c3b549c1 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     19.06.2003 (extracted from common/appcmn.cpp)
 // RCS-ID:      $Id$
 // Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
-// License:     wxWidgets license
+// License:     wxWindows license
 ///////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -128,6 +128,12 @@ wxAppConsole::~wxAppConsole()
 
 bool wxAppConsole::Initialize(int& argc, wxChar **argv)
 {
+    // If some code logged something before wxApp instance was created,
+    // wxLogStderr was set as the target. Undo it here by destroying the
+    // current target. It will be re-created next time logging is needed, but
+    // this time wxAppTraits will be used:
+    delete wxLog::SetActiveTarget(NULL);
+    
     // remember the command line arguments
     this->argc = argc;
     this->argv = argv;