]> git.saurik.com Git - wxWidgets.git/commitdiff
removed DoInit() straggler from appbase mods.
authorRon Lee <ron@debian.org>
Sun, 1 Sep 2002 03:16:52 +0000 (03:16 +0000)
committerRon Lee <ron@debian.org>
Sun, 1 Sep 2002 03:16:52 +0000 (03:16 +0000)
#include log.h

and so, wxbase builds again.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16905 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/init.cpp

index 6182c6734f3656c68e9bdd2e58568c86f20525df..527e5ca42debb46e8d4bacfe9b157c1879eefb78 100644 (file)
@@ -27,6 +27,7 @@
     #include "wx/app.h"
     #include "wx/debug.h"
     #include "wx/filefn.h"
+    #include "wx/log.h"
 #endif
 
 #include "wx/module.h"
@@ -110,7 +111,7 @@ bool WXDLLEXPORT wxInitialize()
         return FALSE;
     }
 
-    wxTheApp->DoInit();
+    wxTheApp->CreateMessageOutput();
     gs_nInitCount++;
 
     return TRUE;
@@ -231,3 +232,5 @@ static void DoCleanUp()
     delete wxLog::SetActiveTarget(NULL);
 #endif // wxUSE_LOG
 }
+
+// vi:sts=4:sw=4:et