diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 01:30:43 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 01:30:43 +0000 |
commit | 26cdf257cc864b9ca91e4424e4bc31dc766b2c5d (patch) | |
tree | e4902d9f7920b7a81d138e22e32d1890ac847922 /src/modules/hs_request.c | |
parent | 7571ca327e33f649f954604396c1d97c2714b0e0 (diff) |
moduleAddEventHook -> Module::AddEventHook.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1587 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/hs_request.c')
-rw-r--r-- | src/modules/hs_request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/hs_request.c b/src/modules/hs_request.c index 94e161234..cd3672ef1 100644 --- a/src/modules/hs_request.c +++ b/src/modules/hs_request.c @@ -114,10 +114,10 @@ class HSRequest : public Module moduleAddCommand(NICKSERV, c, MOD_HEAD); hook = createEventHook(EVENT_DB_SAVING, hsreqevt_db_saving); - moduleAddEventHook(hook); + this->AddEventHook(hook); hook = createEventHook(EVENT_DB_BACKUP, hsreqevt_db_backup); - moduleAddEventHook(hook); + this->AddEventHook(hook); moduleSetHostHelp(hs_help); moduleAddAuthor(AUTHOR); |