From 752d297321c47ff93df4b0d8ccadb39db6ccce3f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 7 Jul 2019 22:27:20 +0200 Subject: [PATCH] IRCClient: Fix build. Forgot to update a function signature. --- Applications/IRCClient/IRCClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/IRCClient/IRCClient.cpp b/Applications/IRCClient/IRCClient.cpp index 7afeddaa8d..aaff6f24a8 100644 --- a/Applications/IRCClient/IRCClient.cpp +++ b/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& channel) { if (on_part_from_channel) on_part_from_channel(channel);