IRCClient: Fix build. Forgot to update a function signature.
This commit is contained in:
parent
ea9340aeca
commit
752d297321
Notes:
sideshowbarker
2024-07-19 13:23:13 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/752d297321c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue