mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 17:52:42 +00:00
Remove method which is already implemented
This commit is contained in:
parent
b6983955f6
commit
03fd244708
1 changed files with 1 additions and 9 deletions
|
@ -6082,7 +6082,7 @@ configuation! */
|
|||
}
|
||||
|
||||
// NSTextFinder methods implementation...
|
||||
// isSelectable, isEditable, string, selectedRanges, setSelectedRanges
|
||||
// isSelectable, isEditable, string, selectedRanges, setSelectedRanges, replaceCharactersInRange:withString:
|
||||
// implemented by NSTextView already...
|
||||
|
||||
- (BOOL) allowsMultipleSelection
|
||||
|
@ -6113,14 +6113,6 @@ configuation! */
|
|||
return YES;
|
||||
}
|
||||
|
||||
- (void) replaceCharactersInRange: (NSRange)range withString: (NSString *)string
|
||||
{
|
||||
NSString *theString = [[self string] stringByReplacingCharactersInRange: range
|
||||
withString: string];
|
||||
[self setString: theString];
|
||||
[self didReplaceCharacters];
|
||||
}
|
||||
|
||||
- (void) didReplaceCharacters
|
||||
{
|
||||
// nothing...
|
||||
|
|
Loading…
Reference in a new issue