Browse Source

IRCClient: Fix build. Forgot to update a function signature.

Andreas Kling 6 năm trước cách đây
mục cha
commit
752d297321

+ 1 - 1
Applications/IRCClient/IRCClient.cpp

@@ -648,7 +648,7 @@ void IRCClient::handle_part_action(const String& channel)
     part_channel(channel);
     part_channel(channel);
 }
 }
 
 
-void IRCClient::did_part_from_channel(IRCChannel& channel)
+void IRCClient::did_part_from_channel(Badge<IRCChannel>, IRCChannel& channel)
 {
 {
     if (on_part_from_channel)
     if (on_part_from_channel)
         on_part_from_channel(channel);
         on_part_from_channel(channel);