mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
enshort menu item namespace
This commit is contained in:
parent
255b52a6da
commit
6fa4b3c053
2 changed files with 5 additions and 5 deletions
|
|
@ -20,7 +20,7 @@ class Help
|
|||
// Requirements
|
||||
public Help\About $about;
|
||||
public Help\Debug $debug;
|
||||
public Help\Homepage $homepage;
|
||||
public Help\Home $home;
|
||||
public Help\Issue $issue;
|
||||
|
||||
// Defaults
|
||||
|
|
@ -49,13 +49,13 @@ class Help
|
|||
$this->about->gtk
|
||||
);
|
||||
|
||||
// Init homepage menu item
|
||||
$this->homepage = new Help\Homepage(
|
||||
// Init home menu item
|
||||
$this->home = new Help\Home(
|
||||
$this
|
||||
);
|
||||
|
||||
$help->append(
|
||||
$this->homepage->gtk
|
||||
$this->home->gtk
|
||||
);
|
||||
|
||||
// Init issue menu item
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ use \GtkMenuItem;
|
|||
|
||||
use \Yggverse\Yoda\Entity\Browser\Menu\Help;
|
||||
|
||||
class Homepage
|
||||
class Home
|
||||
{
|
||||
// GTK
|
||||
public GtkMenuItem $gtk;
|
||||
Loading…
Add table
Add a link
Reference in a new issue