home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / DrawSpellText.m < prev    next >
Text File  |  1995-08-07  |  268b  |  14 lines

  1. #import "draw.h"
  2.  
  3. @implementation DrawSpellText
  4.  
  5. - (void)checkSpelling:(id)sender  {
  6.     [[[[self window] delegate] graphicView] checkSpelling:sender];
  7. }
  8.  
  9. - (void)ignoreSpelling:(id)sender  {
  10.     [[[[self window] delegate] graphicView] ignoreSpelling:sender];
  11. }
  12.  
  13. @end
  14.