diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-04-06 21:25:56 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-04-06 21:25:56 +0000 |
commit | 578da38d30893ca33cc1aa9183e4b82d67c831f3 (patch) | |
tree | cd2bada4c31d277463d44a63a8257339dbbcad26 /src/module.cpp | |
parent | fbb1ab92468cce3b4414a1232c4efc77d34e27c8 (diff) |
Replace Set*Help() functions with virtual *ServHelp() functions that can be overriden in a module's Module class. Patch from Adam.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2266 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/module.cpp')
-rw-r--r-- | src/module.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/module.cpp b/src/module.cpp index f5cc178d2..41dfab0b0 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -15,12 +15,6 @@ Module::Module(const std::string &mname, const std::string &creator) { this->name = mname; /* Our name */ - this->nickHelp = NULL; - this->chanHelp = NULL; - this->memoHelp = NULL; - this->botHelp = NULL; - this->operHelp = NULL; - this->hostHelp = NULL; this->type = THIRD; this->handle = NULL; |