1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 17:28:10 +00:00

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

This commit is contained in:
Andreas Kling 2019-07-07 22:27:20 +02:00
parent ea9340aeca
commit 752d297321

View file

@ -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);