1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:27:35 +00:00

LibGUI: More work on client-side menus.

This commit is contained in:
Andreas Kling 2019-02-11 15:37:12 +01:00
parent c75ecaae32
commit 757429fb55
6 changed files with 55 additions and 3 deletions

View file

@ -7,3 +7,16 @@ GMenuBar::GMenuBar()
GMenuBar::~GMenuBar()
{
}
void GMenuBar::add_menu(OwnPtr<GMenu>&& menu)
{
m_menus.append(move(menu));
}
void GMenuBar::notify_added_to_application(Badge<GApplication>)
{
}
void GMenuBar::notify_removed_from_application(Badge<GApplication>)
{
}