1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 05:43:13 +02:00

Fix a few things that bugged me when I was working on one of my own modules.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2573 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2009-10-18 21:10:39 +00:00
parent 12ac162d9e
commit 0d3ec454de
7 changed files with 39 additions and 14 deletions
+4 -4
View File
@@ -471,7 +471,7 @@ class CoreExport Module
* @param number The message number
* @param ... The argument list
**/
void NoticeLang(char *source, User * u, int number, ...);
void NoticeLang(const char *source, User * u, int number, ...);
/**
* Add a module provided command to the given service.
@@ -721,7 +721,7 @@ class CoreExport Module
*/
virtual void OnServerQuit(Server *server) { }
/** Called on a QUIT
/** Called on a QUIT
* @param u The user
* @param msg The quit message
*/
@@ -866,7 +866,7 @@ class CoreExport Module
*/
virtual void OnDelNick(NickAlias *na) { }
/* Called on findcore()
/** Called on findcore()
* @param nick nickname to be searched for (nc->display)
*/
virtual void OnFindCore(const std::string &nick) { }
@@ -908,7 +908,7 @@ class CoreExport Module
*/
virtual void OnNickEraseAccess(NickCore *nc, const std::string &entry) { }
/** called when a HostCore is deleted
/** called when a HostCore is deleted
* @param hc pointer to the HostCore
*/
virtual void OnDeleteHostCore(HostCore *hc) { }