add some NSTask testing

This commit is contained in:
optixx
2009-09-02 18:07:15 +02:00
parent 58b422771a
commit 1fb3cfdfd9
13 changed files with 212 additions and 75 deletions

View File

@@ -24,9 +24,20 @@
- (IBAction)romUpload:(id)sender {
NSLog(@"romUpload");
CommandWrapper *cw=[[CommandWrapper alloc] init];
[cw doPipedCommand];
NSString* myString = [[NSString alloc] init];
myString = @"test";
[textField setStringValue:myString];
if ( [myString length] != 0) {
NSLog(@"message: %@", myString);
return;
}
}
-(NSSize)windowWillResize:(NSWindow *)send toSize:(NSSize) framesize;