summaryrefslogtreecommitdiff
path: root/src/module.cpp
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-04-06 21:25:56 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-04-06 21:25:56 +0000
commit578da38d30893ca33cc1aa9183e4b82d67c831f3 (patch)
treecd2bada4c31d277463d44a63a8257339dbbcad26 /src/module.cpp
parentfbb1ab92468cce3b4414a1232c4efc77d34e27c8 (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.cpp6
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;