Line | |
---|
1 | //
|
---|
2 | // ICeCoffEEWebKitSuper.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 "ICeCoffEEWebKitSuper.h"
|
---|
10 |
|
---|
11 |
|
---|
12 | @implementation ICeCoffEEWebKitSuper
|
---|
13 |
|
---|
14 | - (NSMenu *)menuForEvent:(NSEvent *)e;
|
---|
15 | {
|
---|
16 | return [super menuForEvent: e];
|
---|
17 | }
|
---|
18 |
|
---|
19 | - (void)mouseUp:(NSEvent *)e;
|
---|
20 | {
|
---|
21 | [super mouseUp: e];
|
---|
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.