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
This commit is contained in:
Fred Kiefer 2001-12-23 13:29:37 +00:00
parent 4e7bf384a7
commit 2d05f0e6a9

View file

@ -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