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:
Fred Kiefer 2000-11-13 15:18:11 +00:00
parent c0f395f492
commit 0916c83f58

View file

@ -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];
}
/*