From ce21b7e91a2a2a15f695eb14b0336810a18bfffe Mon Sep 17 00:00:00 2001 From: FredKiefer Date: Sun, 23 Dec 2001 13:29:37 +0000 Subject: [PATCH] Added some NSResponder methods with empty code to keep the NSInputManager quiet. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@11887 72102866-910b-0410-8b05-ffd578937521 --- Source/NSTextView.m | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/Source/NSTextView.m b/Source/NSTextView.m index b0239c908..5825d52a1 100644 --- a/Source/NSTextView.m +++ b/Source/NSTextView.m @@ -2617,6 +2617,49 @@ afterString in order over charRange. */ } } +- (void) pageDown: (id)sender +{ + // TODO + NSLog(@"Method %s is not implemented for class %s", + "pageDown:", "NSTextView"); +} + +- (void) pageUp: (id)sender +{ + // TODO + NSLog(@"Method %s is not implemented for class %s", + "pageUp:", "NSTextView"); +} + +- (void) scrollLineDown: (id)sender +{ + // TODO + NSLog(@"Method %s is not implemented for class %s", + "scrollLineDown:", "NSTextView"); +} + +- (void) scrollLineUp: (id)sender +{ + // TODO + NSLog(@"Method %s is not implemented for class %s", + "scrollLineUp:", "NSTextView"); +} + +- (void) scrollPageDown: (id)sender +{ + // TODO + NSLog(@"Method %s is not implemented for class %s", + "scrollPageDown:", "NSTextView"); +} + +- (void) scrollPageUp: (id)sender +{ + // TODO + NSLog(@"Method %s is not implemented for class %s", + "scrollPageUp:", "NSTextView"); +} + + /* -selectAll: inherited from NSText */ - (void) selectLine: (id)sender