Просмотр исходного кода

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

Andreas Kling 6 лет назад
Родитель
Сommit
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);