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
Notes: sideshowbarker 2024-07-18 21:05:51 +09:00

View File

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