Add NSResponder actions

This commit is contained in:
Gregory John Casamento 2020-08-13 22:54:55 -04:00
parent d72e9e6ced
commit 41484fd5b3

View file

@ -112,6 +112,19 @@
}
// Validating and performing
- (void) performTextFinderAction: (id)sender
{
if (_finder == nil)
{
_finder = [[GSTextFinder alloc] init];
}
}
- (void) performFindPanelAction: (id)sender
{
[self performAction: [sender tag]];
}
- (void) performAction: (NSTextFinderAction)op
{
switch (op)