]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/utilsunx.cpp
hacked around wxGTK wxStaticText which doesn't derive from wxStaticTextBase (argh...
[wxWidgets.git] / src / unix / utilsunx.cpp
index 072a66b54a7f46a0d12f4e6de428ff1e5191e9cd..4d670f4ea0ef2ddfac9726f33f3c006b6279eb2e 100644 (file)
@@ -315,7 +315,11 @@ long wxExecute( const wxString& command, int flags, wxProcess *process )
 
     long lRc;
 #if defined(__DARWIN__)
-    if( (lRc = wxMacExecute(argv, flags, process)) != -1)
+    // wxMacExecute only executes 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 != ((flags & wxEXEC_SYNC) ? -1 : 0))
         return lRc;
 #endif