]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed a bug that prevented wxLogGui from being used by default
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 1 Jul 2004 07:40:57 +0000 (07:40 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 1 Jul 2004 07:40:57 +0000 (07:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28125 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/appbase.cpp

index 7296444c794a83541d7f79c9163223ba38f3fa5b..d15e4a5d415e8dc55bc86e2abfddd8a6c3b549c1 100644 (file)
@@ -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;