diff options
author | Brian Cully <bjc@kublai.com> | 2011-03-16 02:04:14 -0400 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2011-03-16 02:04:14 -0400 |
commit | 513324eb7bc0d93862e0efc238d3c3998f381670 (patch) | |
tree | 29e2509b81b2cc9caf67eb2c4e0e451c579bf284 | |
parent | 56c019013b1a8fd10d123f1499db6571a8bb9e44 (diff) | |
download | moxie-513324eb7bc0d93862e0efc238d3c3998f381670.tar.gz moxie-513324eb7bc0d93862e0efc238d3c3998f381670.zip |
Remove keyDownToSuper on scrolling text view.
Unused.
-rw-r--r-- | ScrollingTextView.h | 2 | ||||
-rw-r--r-- | ScrollingTextView.m | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/ScrollingTextView.h b/ScrollingTextView.h index 2dbab1a..ef4a495 100644 --- a/ScrollingTextView.h +++ b/ScrollingTextView.h @@ -6,6 +6,4 @@ { IBOutlet NSResponder *theResponder; } - -- (void)keyDownToSuper: (NSEvent *)anEvent; @end
\ No newline at end of file diff --git a/ScrollingTextView.m b/ScrollingTextView.m index 196cf28..e3091a8 100644 --- a/ScrollingTextView.m +++ b/ScrollingTextView.m @@ -48,11 +48,6 @@ didCompleteLayoutForTextContainer: (NSTextContainer *)aTextContainer [super keyDown: anEvent]; } -- (void)keyDownToSuper: (NSEvent *)anEvent -{ - [super keyDown: anEvent]; -} - - (void)changeFont: (id)sender { if ([[self delegate] respondsToSelector: @selector(changeFont:)]) { |