]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/utilsexc.mm
regenerated after version.bkl changes fixing -compatibility_version for Darwin
[wxWidgets.git] / src / cocoa / utilsexc.mm
index a6fa6e499a4e32b3171918b7771795eb2e984b35..5d7fe82113b779eac21ce943ec199fc40a8adee2 100644 (file)
 #ifndef WX_PRECOMP
 #endif
 #include "wx/unix/execute.h"
+#include "wx/utils.h"
 
 #if 0
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "wx/utils.h"
 
 #include "wx/process.h"
@@ -158,21 +155,21 @@ long wxExecute(const wxString& command,
     NSArray* theQuoteArguments = 
         [wxNSStringWithWxString(command) componentsSeparatedByString:@"\""];
         
-    NSMutableArray* theSeperatedArguments = 
+    NSMutableArray* theSeparatedArguments = 
         [NSMutableArray arrayWithCapacity:10];
         
     for (unsigned i = 0; i < [theQuoteArguments count]; ++i)
     {
-        [theSeperatedArguments addObjectsFromArray:
+        [theSeparatedArguments addObjectsFromArray:
             [[theQuoteArguments objectAtIndex:i] componentsSeparatedByString:@" "]
         ];
         
         if(++i < [theQuoteArguments count])
-            [theSeperatedArguments addObject:[theQuoteArguments objectAtIndex:i]];
+            [theSeparatedArguments addObject:[theQuoteArguments objectAtIndex:i]];
     }
     
-    [theTask setLaunchPath:[theSeperatedArguments objectAtIndex:0]];
-    [theTask setArguments:theSeperatedArguments];
+    [theTask setLaunchPath:[theSeparatedArguments objectAtIndex:0]];
+    [theTask setArguments:theSeparatedArguments];
     [theTask launch];
     
     if(sync & wxEXEC_ASYNC)