]> git.saurik.com Git - wxWidgets.git/commitdiff
using backwards compatible implementation
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 5 Jul 2010 06:36:21 +0000 (06:36 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 5 Jul 2010 06:36:21 +0000 (06:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/core/stdpaths_cf.cpp

index 9bd76152f9eecf6f489a811be8ac21722cc7a67f..e48de3c9b1fff642cb6a937130301a1715190a93 100644 (file)
@@ -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