home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Graphics / ToyViewer-2.6a / src / PrefView.m < prev    next >
Encoding:
Text File  |  1996-01-31  |  192 b   |  15 lines

  1.  
  2. #import "PrefView.h"
  3.  
  4. @implementation PrefView
  5.  
  6. - drawSelf:(NXRect *)r :(int) count;    /* Overload */
  7. {
  8.     PSsetlinewidth(1.0);
  9.     PSsetgray(NX_LTGRAY);
  10.     NXRectFill(&bounds);
  11.     return self;
  12. }
  13.  
  14. @end
  15.