mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 21:50:37 +00:00
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:
parent
6f754401c4
commit
9a71af08ad
25 changed files with 1902 additions and 521 deletions
|
@ -102,11 +102,11 @@
|
|||
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];
|
||||
|
||||
dict = [_printInfo dictionary];
|
||||
dict = [[self printInfo] dictionary];
|
||||
args = [NSMutableArray array];
|
||||
copies = [[dict objectForKey: NSPrintCopies] intValue];
|
||||
if (copies > 1)
|
||||
|
@ -140,7 +140,7 @@
|
|||
}
|
||||
NSDebugMLLog(@"GSPrinting", @"Creating context.");
|
||||
|
||||
info = [_printInfo dictionary];
|
||||
info = [[self printInfo] dictionary];
|
||||
|
||||
output = [info objectForKey: NSPrintSavePath];
|
||||
if (output)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue