mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
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:
parent
4e7bf384a7
commit
2d05f0e6a9
1 changed files with 43 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue