mirror of
https://github.com/anope/anope.git
synced 2026-06-29 13:36:38 +02:00
Convert all the derived module constructors to take the new parameter (sed must be worshipped). They still call the base constructor the wrong way.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1577 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -1045,7 +1045,7 @@ void moduleAddIRCDMsgs(void) {
|
||||
class ProtoBahamut : public Module
|
||||
{
|
||||
public:
|
||||
ProtoBahamut(const std::string &creator) : Module(creator)
|
||||
ProtoBahamut(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
@@ -1298,7 +1298,7 @@ void moduleAddIRCDMsgs(void)
|
||||
class ProtoCharybdis : public Module
|
||||
{
|
||||
public:
|
||||
ProtoCharybdis(const std::string &creator) : Module(creator)
|
||||
ProtoCharybdis(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
EvtHook *hk;
|
||||
|
||||
|
||||
@@ -1319,7 +1319,7 @@ void moduleAddIRCDMsgs(void) {
|
||||
class ProtoInspIRCd : public Module
|
||||
{
|
||||
public:
|
||||
ProtoInspIRCd(const std::string &creator) : Module(creator)
|
||||
ProtoInspIRCd(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
@@ -1312,7 +1312,7 @@ void moduleAddIRCDMsgs(void) {
|
||||
class ProtoInspIRCd : public Module
|
||||
{
|
||||
public:
|
||||
ProtoInspIRCd(const std::string &creator) : Module(creator)
|
||||
ProtoInspIRCd(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
@@ -1172,7 +1172,7 @@ void moduleAddIRCDMsgs(void)
|
||||
class ProtoRatbox : public Module
|
||||
{
|
||||
public:
|
||||
ProtoRatbox(const std::string &creator) : Module(creator)
|
||||
ProtoRatbox(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
@@ -1522,7 +1522,7 @@ void moduleAddIRCDMsgs(void) {
|
||||
class ProtoUnreal : public Module
|
||||
{
|
||||
public:
|
||||
ProtoUnreal(const std::string &creator) : Module(creator)
|
||||
ProtoUnreal(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
Reference in New Issue
Block a user