]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/utilsexc.mm
fix for bug 1371386, with some minor mods and cleanup
[wxWidgets.git] / src / cocoa / utilsexc.mm
index 13400d029a9e7239b758c7d16656fe0e7ea4cbff..5d7fe82113b779eac21ce943ec199fc40a8adee2 100644 (file)
 
 #if 0
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "wx/utils.h"
 
 #include "wx/process.h"
@@ -159,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)