home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Draw / textUndo.subproj / TextChange.m < prev    next >
Text File  |  1992-02-09  |  249b  |  19 lines

  1. #import "textundo.h"
  2.  
  3. @implementation TextChange
  4.  
  5. /*
  6.  * The root of all text changes. All we do here is remember the Text view
  7.  * that is going to be changed.
  8.  */
  9.  
  10. - initView:aView
  11. {
  12.     [super init];
  13.     textView = aView;
  14.  
  15.     return self;
  16. }
  17.  
  18. @end
  19.