mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 15:34:58 +00:00
LibGUI: Make GMenu inherit from CObject
This is primarily to make it possible to pass a GMenu* where a CObject* is expected.
This commit is contained in:
parent
e9dda8d592
commit
fd5eb79d19
39 changed files with 88 additions and 86 deletions
|
@ -10,7 +10,7 @@ GMenuBar::~GMenuBar()
|
|||
unrealize_menubar();
|
||||
}
|
||||
|
||||
void GMenuBar::add_menu(NonnullOwnPtr<GMenu>&& menu)
|
||||
void GMenuBar::add_menu(NonnullRefPtr<GMenu> menu)
|
||||
{
|
||||
m_menus.append(move(menu));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue