X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d58c7af849abb1629190aafa2b146207fe6142b7..e1db4c1290af151b0d85c4dcad7cbb2414e0d474:/src/common/appbase.cpp diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index 49b0f8f1b0..544f727b9e 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -52,13 +52,11 @@ #include #endif -#ifndef __WXPALMOS5__ #if !defined(__WXMSW__) || defined(__WXMICROWIN__) #include // for SIGTRAP used by wxTrap() #endif //Win/Unix #include -#endif // ! __WXPALMOS5__ #if wxUSE_FONTMAP #include "wx/fontmap.h" @@ -181,7 +179,6 @@ bool wxAppConsoleBase::Initialize(int& WXUNUSED(argc), wxChar **WXUNUSED(argv)) wxString wxAppConsoleBase::GetAppName() const { wxString name = m_appName; -#ifndef __WXPALMOS__ if ( name.empty() ) { if ( argv ) @@ -190,7 +187,6 @@ wxString wxAppConsoleBase::GetAppName() const wxFileName::SplitPath(argv[0], NULL, &name, NULL); } } -#endif // !__WXPALMOS__ return name; }