1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 23:25:08 +00:00

IRCClient: Add menus.

This commit is contained in:
Andreas Kling 2019-03-16 01:10:48 +01:00
parent 746144f783
commit 5c2d405e1f
6 changed files with 75 additions and 34 deletions

View file

@ -9,7 +9,7 @@ public:
enum Type { Invalid, Action, Separator };
explicit GMenuItem(Type);
explicit GMenuItem(RetainPtr<GAction>&&);
explicit GMenuItem(Retained<GAction>&&);
~GMenuItem();
Type type() const { return m_type; }