mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 09:35:28 +00:00
fix access level for default values
This commit is contained in:
parent
42a5293f6c
commit
4b296f309c
3 changed files with 5 additions and 5 deletions
|
|
@ -8,9 +8,9 @@ abstract class Entry
|
||||||
{
|
{
|
||||||
public \GtkEntry $gtk;
|
public \GtkEntry $gtk;
|
||||||
|
|
||||||
private int $_length = 1024;
|
protected int $_length = 1024;
|
||||||
private string $_placeholder = '';
|
protected string $_placeholder = '';
|
||||||
private string $_value = '';
|
protected string $_value = '';
|
||||||
|
|
||||||
public function __construct()
|
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
|
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(
|
protected function _onActivate(
|
||||||
\GtkEntry $entry
|
\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
|
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(
|
protected function _onActivate(
|
||||||
\GtkEntry $entry
|
\GtkEntry $entry
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue