diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:48:04 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 00:48:04 +0000 |
commit | 7ac7c564f5115af12f771db5b510b757b1dcc322 (patch) | |
tree | 90f9d13331c37f8e5dc5ce642b50be545590274f /src/modules/cs_appendtopic.c | |
parent | 7181dc35ce0f2d2a2bf2d2bd0d36a690c1cc6b95 (diff) |
moduleSetType() -> Module::SetType().
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1583 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/cs_appendtopic.c')
-rw-r--r-- | src/modules/cs_appendtopic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/cs_appendtopic.c b/src/modules/cs_appendtopic.c index 7c0144e5b..0e15c9af7 100644 --- a/src/modules/cs_appendtopic.c +++ b/src/modules/cs_appendtopic.c @@ -62,7 +62,7 @@ class CSAppendTopic : public Module moduleAddAuthor(AUTHOR); moduleAddVersion(VERSION); - moduleSetType(this, SUPPORTED); + this->SetType(SUPPORTED); c = createCommand("APPENDTOPIC", my_cs_appendtopic, NULL, -1, -1, -1, -1, -1); moduleAddCommand(CHANSERV, c, MOD_HEAD); |