1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 02:43:12 +02:00

Remove several string format IRCDProto function overloads.

This commit is contained in:
Sadie Powell
2024-02-26 16:33:48 +00:00
parent 4789751e50
commit 6be4df3b39
14 changed files with 33 additions and 99 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ public:
MaxModes = 4;
}
void SendSVSKillInternal(const MessageSource &source, User *targ, const Anope::string &reason) override { hybrid->SendSVSKillInternal(source, targ, reason); }
void SendSVSKill(const MessageSource &source, User *targ, const Anope::string &reason) override { hybrid->SendSVSKill(source, targ, reason); }
void SendGlobalNotice(BotInfo *bi, const Server *dest, const Anope::string &msg) override { hybrid->SendGlobalNotice(bi, dest, msg); }
void SendGlobalPrivmsg(BotInfo *bi, const Server *dest, const Anope::string &msg) override { hybrid->SendGlobalPrivmsg(bi, dest, msg); }
void SendSQLine(User *u, const XLine *x) override { hybrid->SendSQLine(u, x); }
@@ -50,7 +50,7 @@ public:
void SendSVSHold(const Anope::string &nick, time_t t) override { hybrid->SendSVSHold(nick, t); }
void SendSVSHoldDel(const Anope::string &nick) override { hybrid->SendSVSHoldDel(nick); }
void SendGlobopsInternal(const MessageSource &source, const Anope::string &buf) override
void SendGlobops(const MessageSource &source, const Anope::string &buf) override
{
Uplink::Send(source, "OPERWALL", buf);
}