mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 18:31:20 +00:00
Implemented [print:], [fax:], [dataWithEPSInsideRect:].
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8105 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c0f395f492
commit
0916c83f58
1 changed files with 4 additions and 4 deletions
|
@ -3150,18 +3150,18 @@ resetCursorRectsForView(NSView *theView)
|
|||
*/
|
||||
- (NSData*) dataWithEPSInsideRect: (NSRect)rect
|
||||
{
|
||||
// FIXME: The implementation of this method is missing
|
||||
return nil;
|
||||
return [_contentView dataWithEPSInsideRect:
|
||||
[_contentView convertRect: rect fromView: nil]];
|
||||
}
|
||||
|
||||
- (void) fax: (id)sender
|
||||
{
|
||||
// FIXME: This method is missing
|
||||
[_contentView fax: sender];
|
||||
}
|
||||
|
||||
- (void) print: (id)sender
|
||||
{
|
||||
// FIXME: This method is missing
|
||||
[_contentView print: sender];
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue