浏览代码

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

Andreas Kling 6 年之前
父节点
当前提交
752d297321
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Applications/IRCClient/IRCClient.cpp

+ 1 - 1
Applications/IRCClient/IRCClient.cpp

@@ -648,7 +648,7 @@ void IRCClient::handle_part_action(const String& 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)
         on_part_from_channel(channel);