From fe856cc55bf0213f9d5dc7875c7bde1d2b7655be Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 3 Aug 2005 23:58:54 +0000 Subject: [PATCH] no need to check dbghelp DLL initialization in GetAssertStackTrace() explicitly any more now that wxStackWalker doesn't log an error if it failed to do it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/appbase.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index 8d223f8da0..07732a2d9d 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -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: -- 2.45.2