1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:17:44 +00:00

LibGUI: Add GUI::MenuBar::menubar_id()

Just exposing the menubar ID on the WindowServer side.
This commit is contained in:
Andreas Kling 2021-03-25 20:57:36 +01:00
parent 115348147d
commit 1daaa4f38d

View file

@ -44,6 +44,8 @@ public:
void notify_added_to_application(Badge<Application>); void notify_added_to_application(Badge<Application>);
void notify_removed_from_application(Badge<Application>); void notify_removed_from_application(Badge<Application>);
int menubar_id() const { return m_menubar_id; }
private: private:
MenuBar(); MenuBar();