shithub: choc

Download patch

ref: a4f038a36435b5d4dd726c2f9e3f6a34e0269ec6
parent: 45f543dbe6800827907fd78649d30480a6d0bd31
author: Simon Howard <fraggle@gmail.com>
date: Sat Jan 9 16:06:31 EST 2010

Clear existing arguments when adding a file.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1795

--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -62,15 +62,11 @@
 }
 
 - (void) addFileToCommandLine: (NSString *) fileName
-         forArgument: (NSString *) args
+         forArgument: (NSString *) arg
 {
     NSString *newCommandLine;
-printf("Add file: %s %s\n", [args UTF8String], [fileName UTF8String]);
 
-    newCommandLine = [self->commandLineArguments stringValue];
-    newCommandLine = [newCommandLine stringByAppendingString: @" "];
-    newCommandLine = [newCommandLine stringByAppendingString: args];
-    newCommandLine = [newCommandLine stringByAppendingString: @" \""];
+    newCommandLine = [arg stringByAppendingString: @" \""];
     newCommandLine = [newCommandLine stringByAppendingString: fileName];
     newCommandLine = [newCommandLine stringByAppendingString: @"\""];