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
Notes: sideshowbarker 2024-07-19 13:23:13 +09:00

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