using backwards compatible implementation
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -141,36 +141,7 @@ wxString wxStandardPathsCF::GetDataDir() const
|
|||||||
wxString wxStandardPathsCF::GetExecutablePath() const
|
wxString wxStandardPathsCF::GetExecutablePath() const
|
||||||
{
|
{
|
||||||
#ifdef __WXMAC__
|
#ifdef __WXMAC__
|
||||||
#if 1
|
return GetFromFunc(CFBundleCopyExecutableURL);
|
||||||
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
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
return wxStandardPathsBase::GetExecutablePath();
|
return wxStandardPathsBase::GetExecutablePath();
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user