// // ICeCoffEESuper.m // ICeCoffEE APE // // Created by Nicholas Riley on Sun Jan 19 2003. // Copyright (c) 2003 Nicholas Riley. All rights reserved. // #import "ICeCoffEESuper.h" @implementation ICeCoffEESuper - (NSMenu *)menuForEvent:(NSEvent *)e; { return [super menuForEvent: e]; } - (void)clickedOnLink:(id)link atIndex:(unsigned)charIndex; { [super clickedOnLink: link atIndex: charIndex]; } - (void)mouseDown:(NSEvent *)e; { [super mouseDown: e]; } @end