]> git.saurik.com Git - wxWidgets.git/commitdiff
no need to check dbghelp DLL initialization in GetAssertStackTrace() explicitly any...
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Aug 2005 23:58:54 +0000 (23:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 3 Aug 2005 23:58:54 +0000 (23:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/appbase.cpp

index 8d223f8da074d8afa2801d7de8d5f73d648c5557..07732a2d9debfc9970fb42f6a7b206c772338f12 100644 (file)
@@ -711,12 +711,6 @@ static wxString GetAssertStackTrace()
 {
     wxString stackTrace;
 
-#if wxUSE_DBGHELP
-    // check that we can get the stack trace before trying to do it
-    if ( !wxDbgHelpDLL::Init() )
-        return stackTrace;
-#endif
-    
     class StackDump : public wxStackWalker
     {
     public: