mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25: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
|
// Requirements
|
||||||
public Help\About $about;
|
public Help\About $about;
|
||||||
public Help\Debug $debug;
|
public Help\Debug $debug;
|
||||||
public Help\Homepage $homepage;
|
public Help\Home $home;
|
||||||
public Help\Issue $issue;
|
public Help\Issue $issue;
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
|
|
@ -49,13 +49,13 @@ class Help
|
||||||
$this->about->gtk
|
$this->about->gtk
|
||||||
);
|
);
|
||||||
|
|
||||||
// Init homepage menu item
|
// Init home menu item
|
||||||
$this->homepage = new Help\Homepage(
|
$this->home = new Help\Home(
|
||||||
$this
|
$this
|
||||||
);
|
);
|
||||||
|
|
||||||
$help->append(
|
$help->append(
|
||||||
$this->homepage->gtk
|
$this->home->gtk
|
||||||
);
|
);
|
||||||
|
|
||||||
// Init issue menu item
|
// Init issue menu item
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ use \GtkMenuItem;
|
||||||
|
|
||||||
use \Yggverse\Yoda\Entity\Browser\Menu\Help;
|
use \Yggverse\Yoda\Entity\Browser\Menu\Help;
|
||||||
|
|
||||||
class Homepage
|
class Home
|
||||||
{
|
{
|
||||||
// GTK
|
// GTK
|
||||||
public GtkMenuItem $gtk;
|
public GtkMenuItem $gtk;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue