summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 19:36:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-31 19:36:38 +0000
commit6fb9ea57654f8409ae3ddf7493a6cd45dc9cb7bc (patch)
treede09badaf92126ac613dc06f78c0dbe4e27fc78b /src
parent21f9acdb6c5c35b26d926f75845135f16c3c54e9 (diff)
Remove all the OnAddGLine, OnAddWhateverLine replace with one simple OnAddLine and a OnDelLine which is passed User* (person adding or NULL if its the server) and the XLine
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8440 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 0c99218a1..66f93e9d7 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -175,16 +175,8 @@ void Module::ProtoSendMetaData(void*, int, void*, const std::string&, const std
void Module::OnWallops(User*, const std::string&) { }
void Module::OnChangeHost(User*, const std::string&) { }
void Module::OnChangeName(User*, const std::string&) { }
-void Module::OnAddGLine(long, User*, const std::string&, const std::string&) { }
-void Module::OnAddZLine(long, User*, const std::string&, const std::string&) { }
-void Module::OnAddKLine(long, User*, const std::string&, const std::string&) { }
-void Module::OnAddQLine(long, User*, const std::string&, const std::string&) { }
-void Module::OnAddELine(long, User*, const std::string&, const std::string&) { }
-void Module::OnDelGLine(User*, const std::string&) { }
-void Module::OnDelZLine(User*, const std::string&) { }
-void Module::OnDelKLine(User*, const std::string&) { }
-void Module::OnDelQLine(User*, const std::string&) { }
-void Module::OnDelELine(User*, const std::string&) { }
+void Module::OnAddLine(User*, XLine*) { }
+void Module::OnDelLine(User*, XLine*) { }
void Module::OnCleanup(int, void*) { }
void Module::Implements(char* Implements) { for (int j = 0; j < 255; j++) Implements[j] = 0; }
void Module::OnChannelDelete(Channel*) { }