home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.3 (Developer)
/
NeXT_Developer-3.3.iso
/
NextDeveloper
/
Examples
/
AppKit
/
Draw
/
textUndo.subproj
/
TextChange.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-02-10
|
249 b
|
19 lines
#import "textundo.h"
@implementation TextChange
/*
* The root of all text changes. All we do here is remember the Text view
* that is going to be changed.
*/
- initView:aView
{
[super init];
textView = aView;
return self;
}
@end