mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
remove undefined arguments
This commit is contained in:
parent
3334d40975
commit
ea7d98ffd3
4 changed files with 6 additions and 12 deletions
|
|
@ -40,12 +40,10 @@ abstract class Entry
|
||||||
$this->gtk->connect(
|
$this->gtk->connect(
|
||||||
'activate',
|
'activate',
|
||||||
function(
|
function(
|
||||||
\GtkEntry $entry,
|
\GtkEntry $entry
|
||||||
\GdkEvent $event
|
|
||||||
) {
|
) {
|
||||||
$this->_onActivate(
|
$this->_onActivate(
|
||||||
$entry,
|
$entry
|
||||||
$event
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
@ -89,8 +87,7 @@ abstract class Entry
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract protected function _onActivate(
|
abstract protected function _onActivate(
|
||||||
\GtkEntry $entry,
|
\GtkEntry $entry
|
||||||
\GdkEvent $event
|
|
||||||
): void;
|
): void;
|
||||||
|
|
||||||
abstract protected function _onKeyRelease(
|
abstract protected function _onKeyRelease(
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,7 @@ class Request extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Page\Navb
|
||||||
private ?int $_changed = null;
|
private ?int $_changed = null;
|
||||||
|
|
||||||
protected function _onActivate(
|
protected function _onActivate(
|
||||||
\GtkEntry $entry,
|
\GtkEntry $entry
|
||||||
\GdkEvent $event
|
|
||||||
): void
|
): void
|
||||||
{
|
{
|
||||||
$this->navbar->page->open(
|
$this->navbar->page->open(
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,7 @@ class Query extends \Yggverse\Yoda\Abstract\Entity\Entry
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function _onActivate(
|
protected function _onActivate(
|
||||||
\GtkEntry $entry,
|
\GtkEntry $entry
|
||||||
\GdkEvent $event
|
|
||||||
): void
|
): void
|
||||||
{
|
{
|
||||||
$this->response->send();
|
$this->response->send();
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,7 @@ class Filter extends \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Na
|
||||||
protected string $_placeholder = 'Search in history...';
|
protected string $_placeholder = 'Search in history...';
|
||||||
|
|
||||||
protected function _onActivate(
|
protected function _onActivate(
|
||||||
\GtkEntry $entry,
|
\GtkEntry $entry
|
||||||
\GdkEvent $event
|
|
||||||
): void
|
): void
|
||||||
{
|
{
|
||||||
$this->navbar->container->content->search(
|
$this->navbar->container->content->search(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue