mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
enshort namespaces
This commit is contained in:
parent
2d7b3d1965
commit
ee2f8ba3b1
21 changed files with 93 additions and 133 deletions
|
|
@ -6,9 +6,6 @@ namespace Yggverse\Yoda\Entity\Browser\Header;
|
|||
|
||||
use \Yggverse\Yoda\Entity\Browser\Header;
|
||||
|
||||
use \Yggverse\Yoda\Entity\Browser\Header\Tray\Navigation;
|
||||
use \Yggverse\Yoda\Entity\Browser\Header\Tray\Tab;
|
||||
|
||||
class Tray
|
||||
{
|
||||
public \GtkBox $gtk;
|
||||
|
|
@ -17,8 +14,8 @@ class Tray
|
|||
public Header $header;
|
||||
|
||||
// Requirements
|
||||
public Navigation $navigation;
|
||||
public Tab $tab;
|
||||
public Tray\Navigation $navigation;
|
||||
public Tray\Tab $tab;
|
||||
|
||||
// Defaults
|
||||
protected bool $_actions = true;
|
||||
|
|
@ -50,7 +47,7 @@ class Tray
|
|||
);
|
||||
|
||||
// Init navigation
|
||||
$this->navigation = new Navigation(
|
||||
$this->navigation = new Tray\Navigation(
|
||||
$this
|
||||
);
|
||||
|
||||
|
|
@ -59,7 +56,7 @@ class Tray
|
|||
);
|
||||
|
||||
// Init new tab button
|
||||
$this->tab = new Tab(
|
||||
$this->tab = new Tray\Tab(
|
||||
$this
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue