X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0b44214c977aceae6fdcd68bfb3aa311aaf6a86f..d7e0343413296e8719386abbcb55ecbc4dceba36:/src/common/appbase.cpp diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index 27fa04d6b3..68ae29e358 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -44,6 +44,7 @@ #include "wx/msgout.h" #include "wx/ptr_scpd.h" #include "wx/tokenzr.h" +#include "wx/thread.h" #if wxUSE_EXCEPTIONS && wxUSE_STL #include @@ -177,7 +178,7 @@ bool wxAppConsoleBase::Initialize(int& argcOrig, wxChar **argvOrig) #endif #ifndef __WXPALMOS__ - if ( m_appName.empty() && (bool) argv ) + if ( m_appName.empty() && argv ) { // the application name is, by default, the name of its executable file wxFileName::SplitPath(argv[0], NULL, &m_appName, NULL); @@ -790,12 +791,6 @@ void wxTrap() { #if defined(__WXMSW__) && !defined(__WXMICROWIN__) DebugBreak(); -#elif defined(__WXMAC__) && !defined(__DARWIN__) - #if __powerc - Debugger(); - #else - SysBreak(); - #endif #elif defined(_MSL_USING_MW_C_HEADERS) && _MSL_USING_MW_C_HEADERS Debugger(); #elif defined(__UNIX__)