#include <typeinfo>
#endif
-#ifndef __WXPALMOS5__
#if !defined(__WXMSW__) || defined(__WXMICROWIN__)
#include <signal.h> // for SIGTRAP used by wxTrap()
#endif //Win/Unix
#include <locale.h>
-#endif // ! __WXPALMOS5__
#if wxUSE_FONTMAP
#include "wx/fontmap.h"
wxString wxAppConsoleBase::GetAppName() const
{
wxString name = m_appName;
-#ifndef __WXPALMOS__
if ( name.empty() )
{
if ( argv )
wxFileName::SplitPath(argv[0], NULL, &name, NULL);
}
}
-#endif // !__WXPALMOS__
return name;
}
{
// If this option is set, we should abort immediately when assert happens.
if ( wxSystemOptions::GetOptionInt("exit-on-assert") )
- abort();
+ wxAbort();
// FIXME MT-unsafe
static int s_bInAssert = 0;