diff options
author | Adam <Adam@anope.org> | 2014-12-10 01:29:18 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-12-10 01:29:18 -0500 |
commit | 3e5a5e1c669f6027b897f7358d45f92e1552f746 (patch) | |
tree | 5be9d41890d79eb0472f374b3f2a0ab9b36b1941 /modules/protocol/charybdis.cpp | |
parent | 42238034490fb5479d787bd1695750387d508200 (diff) |
Use a triat class for event names instead of having to manually give them places, which is much less error prone
Diffstat (limited to 'modules/protocol/charybdis.cpp')
-rw-r--r-- | modules/protocol/charybdis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/charybdis.cpp b/modules/protocol/charybdis.cpp index 5f24df8e6..3c9061511 100644 --- a/modules/protocol/charybdis.cpp +++ b/modules/protocol/charybdis.cpp @@ -324,8 +324,8 @@ class ProtoCharybdis : public Module public: ProtoCharybdis(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL | VENDOR) - , EventHook<Event::ChannelSync>("OnChannelSync") - , EventHook<Event::MLockEvents>("MLock") + , EventHook<Event::ChannelSync>() + , EventHook<Event::MLockEvents>() , ircd_proto(this) , message_away(this) , message_capab(this) |