modules: use override keyword

Resolves #736
This commit is contained in:
J-P Nurmi
2014-11-05 07:48:24 +01:00
parent f7270e8b2e
commit f9318d02cf
57 changed files with 509 additions and 509 deletions

View File

@@ -21,16 +21,16 @@ public:
MODCONSTRUCTOR(CRawMod) {}
virtual ~CRawMod() {}
virtual EModRet OnRaw(CString& sLine) {
virtual EModRet OnRaw(CString& sLine) override {
PutModule("IRC -> [" + sLine + "]");
return CONTINUE;
}
virtual void OnModCommand(const CString& sCommand) {
virtual void OnModCommand(const CString& sCommand) override {
PutIRC(sCommand);
}
virtual EModRet OnUserRaw(CString& sLine) {
virtual EModRet OnUserRaw(CString& sLine) override {
PutModule("YOU -> [" + sLine + "]");
return CONTINUE;
}