source: trunk/ICeCoffEE/ICeCoffEE/ICeCoffEESuper.m

Last change on this file was 435, checked in by Nicholas Riley, 16 years ago

Operate on the link target, rather than the text, of NSTextView hyperlinks

File size: 485 bytes
Line 
1//
2// ICeCoffEESuper.m
3// ICeCoffEE APE
4//
5// Created by Nicholas Riley on Sun Jan 19 2003.
6// Copyright (c) 2003 Nicholas Riley. All rights reserved.
7//
8
9#import "ICeCoffEESuper.h"
10
11
12@implementation ICeCoffEESuper
13
14- (NSMenu *)menuForEvent:(NSEvent *)e;
15{
16 return [super menuForEvent: e];
17}
18
19- (void)clickedOnLink:(id)link atIndex:(unsigned)charIndex;
20{
21 [super clickedOnLink: link atIndex: charIndex];
22}
23
24- (void)mouseDown:(NSEvent *)e;
25{
26 [super mouseDown: e];
27}
28
29@end
Note: See TracBrowser for help on using the repository browser.