X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/885d927e36935a0077c27fa998bc38e5244d2416..b23de238c89013320f9c02cf8aa95cb5a61d9769:/src/osx/core/stdpaths_cf.cpp?ds=sidebyside diff --git a/src/osx/core/stdpaths_cf.cpp b/src/osx/core/stdpaths_cf.cpp index 9bd76152f9..de312789c9 100644 --- a/src/osx/core/stdpaths_cf.cpp +++ b/src/osx/core/stdpaths_cf.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: mac/corefoundation/stdpaths.cpp +// Name: src/osx/core/stdpaths_cf.cpp // Purpose: wxStandardPaths implementation for CoreFoundation systems // Author: David Elliott // Modified by: @@ -141,36 +141,7 @@ wxString wxStandardPathsCF::GetDataDir() const wxString wxStandardPathsCF::GetExecutablePath() const { #ifdef __WXMAC__ -#if 1 - return GetFromFunc(CFBundleCopyBundleURL); -#else - // TODO remove if cf implementation ok - ProcessInfoRec processinfo; - ProcessSerialNumber procno ; -#ifdef __LP64__ - FSRef fsRef; -#else - FSSpec fsSpec; -#endif - - procno.highLongOfPSN = 0 ; - procno.lowLongOfPSN = kCurrentProcess ; - processinfo.processInfoLength = sizeof(ProcessInfoRec); - processinfo.processName = NULL; -#ifdef __LP64__ - processinfo.processAppRef = &fsRef; -#else - processinfo.processAppSpec = &fsSpec; -#endif - - GetProcessInformation( &procno , &processinfo ) ; -#ifdef __LP64__ - return wxMacFSRefToPath(&fsRef); -#else - return wxMacFSSpec2MacFilename(&fsSpec); -#endif -#endif - + return GetFromFunc(CFBundleCopyExecutableURL); #else return wxStandardPathsBase::GetExecutablePath(); #endif