mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 10:51:56 +00:00
call performFindPanelAction: from performTextFinderAction:
This commit is contained in:
parent
889a1eb13b
commit
b242e3407a
1 changed files with 5 additions and 5 deletions
|
@ -115,15 +115,15 @@
|
||||||
// Validating and performing
|
// Validating and performing
|
||||||
- (void) performTextFinderAction: (id)sender
|
- (void) performTextFinderAction: (id)sender
|
||||||
{
|
{
|
||||||
if (_finder == nil)
|
[self performFindPanelAction: sender];
|
||||||
{
|
|
||||||
_finder = [[GSTextFinder alloc] init];
|
|
||||||
}
|
|
||||||
[self validateUserInterfaceAction: sender];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) performFindPanelAction: (id)sender
|
- (void) performFindPanelAction: (id)sender
|
||||||
{
|
{
|
||||||
|
if (_finder == nil)
|
||||||
|
{
|
||||||
|
_finder = [[GSTextFinder alloc] init];
|
||||||
|
}
|
||||||
[self performAction: [sender tag]];
|
[self performAction: [sender tag]];
|
||||||
[self validateUserInterfaceAction: sender];
|
[self validateUserInterfaceAction: sender];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue