diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-16 01:10:48 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-16 01:10:48 +0100 |
commit | 5c2d405e1fa9214d095b51ac2f9de601f97550a8 (patch) | |
tree | 44560b907a1cdf574537ab49615356dab7fa6899 /LibGUI/GMenuItem.h | |
parent | 746144f783c1121bba1cc0a2214eb65d7e6b6ad1 (diff) | |
download | serenity-5c2d405e1fa9214d095b51ac2f9de601f97550a8.zip |
IRCClient: Add menus.
Diffstat (limited to 'LibGUI/GMenuItem.h')
-rw-r--r-- | LibGUI/GMenuItem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GMenuItem.h b/LibGUI/GMenuItem.h index a26dea394c..9c391d9574 100644 --- a/LibGUI/GMenuItem.h +++ b/LibGUI/GMenuItem.h @@ -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; } |