summaryrefslogtreecommitdiff
path: root/LibGUI/GMenuItem.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-16 01:10:48 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-16 01:10:48 +0100
commit5c2d405e1fa9214d095b51ac2f9de601f97550a8 (patch)
tree44560b907a1cdf574537ab49615356dab7fa6899 /LibGUI/GMenuItem.h
parent746144f783c1121bba1cc0a2214eb65d7e6b6ad1 (diff)
downloadserenity-5c2d405e1fa9214d095b51ac2f9de601f97550a8.zip
IRCClient: Add menus.
Diffstat (limited to 'LibGUI/GMenuItem.h')
-rw-r--r--LibGUI/GMenuItem.h2
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; }