mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
fix access level for default values
This commit is contained in:
parent
42a5293f6c
commit
4b296f309c
@ -8,9 +8,9 @@ abstract class Entry
|
||||
{
|
||||
public \GtkEntry $gtk;
|
||||
|
||||
private int $_length = 1024;
|
||||
private string $_placeholder = '';
|
||||
private string $_value = '';
|
||||
protected int $_length = 1024;
|
||||
protected string $_placeholder = '';
|
||||
protected string $_value = '';
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
|
@ -6,7 +6,7 @@ namespace Yggverse\Yoda\Entity\Browser\Container\Tab\Page\Navbar;
|
||||
|
||||
class Request extends \Yggverse\Yoda\Abstract\Entity\Browser\Container\Tab\Page\Navbar\Entry
|
||||
{
|
||||
private string $_placeholder = 'URL or search term...';
|
||||
protected string $_placeholder = 'URL or search term...';
|
||||
|
||||
protected function _onActivate(
|
||||
\GtkEntry $entry
|
||||
|
@ -6,7 +6,7 @@ namespace Yggverse\Yoda\Entity\Browser\History\Container\Navbar;
|
||||
|
||||
class Filter extends \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Navbar\Entry
|
||||
{
|
||||
private string $_placeholder = 'Search in history...';
|
||||
protected string $_placeholder = 'Search in history...';
|
||||
|
||||
protected function _onActivate(
|
||||
\GtkEntry $entry
|
||||
|
Loading…
x
Reference in New Issue
Block a user