enshort menu item namespace

This commit is contained in:
yggverse 2024-07-31 03:03:33 +03:00
parent 255b52a6da
commit 6fa4b3c053
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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;