remove undefined arguments

This commit is contained in:
yggverse 2024-07-20 19:00:36 +03:00
parent 3334d40975
commit ea7d98ffd3
4 changed files with 6 additions and 12 deletions

View file

@ -40,12 +40,10 @@ abstract class Entry
$this->gtk->connect(
'activate',
function(
\GtkEntry $entry,
\GdkEvent $event
\GtkEntry $entry
) {
$this->_onActivate(
$entry,
$event
$entry
);
}
);
@ -89,8 +87,7 @@ abstract class Entry
}
abstract protected function _onActivate(
\GtkEntry $entry,
\GdkEvent $event
\GtkEntry $entry
): void;
abstract protected function _onKeyRelease(