Added MacOS 10.4 methods for NSDocument, NSDocumentController,

NSPrintOperation, NSResponder and NSCell.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24378 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2007-01-17 12:09:41 +00:00
parent 6f754401c4
commit 9a71af08ad
25 changed files with 1902 additions and 521 deletions

View file

@ -97,9 +97,9 @@
//NSMutableArray *args;
NSDebugMLLog(@"GSPrinting", @"");
name = [[_printInfo printer] name];
name = [[[self printInfo] printer] name];
status = [NSString stringWithFormat: @"Spooling to printer %@.", name];
[_printPanel _setStatusStringValue: status];
[[self printPanel] _setStatusStringValue: status];
cupsPrintFile( [name UTF8String],
[_path UTF8String],
@ -107,7 +107,7 @@
0, NULL );
//dict = [_printInfo dictionary];
//dict = [[self printInfo] dictionary];
//args = [NSMutableArray array];
//copies = [[dict objectForKey: NSPrintCopies] intValue];
//if (copies > 1)
@ -141,7 +141,7 @@
}
NSDebugMLLog(@"GSPrinting", @"Creating context.");
info = [_printInfo dictionary];
info = [[self printInfo] dictionary];
output = [info objectForKey: NSPrintSavePath];
if (output)