applying patch 1188918

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34005 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2005-05-10 05:44:10 +00:00
parent b6d4a1afde
commit fb19fbabbc
2 changed files with 14 additions and 9 deletions

View File

@@ -316,10 +316,10 @@ long wxExecute( const wxString& command, int flags, wxProcess *process )
long lRc;
#if defined(__DARWIN__)
// wxMacExecute only executes app bundles.
// It returns -1 if the target is not an app bundle, thus falling through
// to the regular wxExecute for non app bundles.
// It returns an error code if the target is not an app bundle, thus falling
// through to the regular wxExecute for non app bundles.
lRc = wxMacExecute(argv, flags, process);
if( lRc != -1)
if( lRc != ((flags & wxEXEC_SYNC) ? -1 : 0))
return lRc;
#endif