home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / NoPane.m < prev    next >
Encoding:
Text File  |  1993-03-18  |  611 b   |  48 lines

  1.  
  2. static char RCSId[]="$Id: NoPane.m,v 1.1.1.1 1993/03/18 03:34:37 davis Exp $";
  3.  
  4.  
  5. #import <appkit/Application.h>
  6. #import <appkit/View.h>
  7.  
  8. #import "NoPane.h"
  9.  
  10.  
  11. @implementation NoPane
  12.  
  13.  
  14. - init
  15. {
  16.     [super init];
  17.  
  18.     [NXApp loadNibSection: "NoPane.nib"
  19.             owner: self
  20.         withNames: NO
  21.          fromZone: [self zone]];
  22.  
  23.     view = [window setContentView:[[View alloc] init]];
  24.  
  25.     title = NULL;
  26.     icon = NULL;
  27.     status = nil;
  28.     doc = nil;
  29.  
  30.     return self;
  31. }
  32.  
  33.  
  34. - updateStatus:aStatus doc:aDoc
  35. {
  36.     return nil;
  37. }
  38.  
  39.  
  40. // Shuts up the compiler about unused RCSId
  41. - (const char *) rcsid
  42. {
  43.     return RCSId;
  44. }
  45.  
  46.  
  47. @end
  48.