blob: b917bfffaaf5f148d81c94cee04811de51cdde87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* ScrollingTextView */
#import <Cocoa/Cocoa.h>
@interface ScrollingTextView : NSTextView
{
IBOutlet NSResponder *theResponder;
}
- (void)keyDownToSuper: (NSEvent *)anEvent;
@end
|