summaryrefslogtreecommitdiff
path: root/src/core/cs_clear.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 01:54:17 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-08 01:54:17 +0000
commit1c3b8e15c2c5ab96146ddc7573cf5d05f28967fe (patch)
tree4f6a0a688c8a3874c850826c12bd972082d0bfa1 /src/core/cs_clear.c
parent7bac547f555a5ec93a89a3433ae74152dbbc3e89 (diff)
moduleAddVersion -> Module::SetVersion
moduleAddAuthor -> Module::SetAuthor git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1590 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_clear.c')
-rw-r--r--src/core/cs_clear.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/cs_clear.c b/src/core/cs_clear.c
index 3d3e62802..87dbd358e 100644
--- a/src/core/cs_clear.c
+++ b/src/core/cs_clear.c
@@ -25,8 +25,8 @@ class CSClear : public Module
{
Command *c;
- moduleAddAuthor("Anope");
- moduleAddVersion("$Id$");
+ this->SetAuthor("Anope");
+ this->SetVersion("$Id$");
this->SetType(CORE);
c = createCommand("CLEAR", do_clear, NULL, CHAN_HELP_CLEAR, -1, -1, -1, -1);