Remove unnecessary virtual keyword occurrences

This makes it convenient to 'grep virtual' and 'grep override' :)
This commit is contained in:
J-P Nurmi
2015-02-25 18:33:09 +01:00
parent ef9939e1ec
commit 6002bd5c2b
65 changed files with 515 additions and 515 deletions

View File

@@ -138,7 +138,7 @@ public:
m_pTimer = NULL;
}
virtual EModRet OnUserRaw(CString& sLine) override {
EModRet OnUserRaw(CString& sLine) override {
// We dont care if we are not connected to IRC
if (!GetNetwork()->IsIRCConnected())
return CONTINUE;
@@ -164,7 +164,7 @@ public:
return CONTINUE;
}
virtual EModRet OnRaw(CString& sLine) override {
EModRet OnRaw(CString& sLine) override {
// Are we trying to get our primary nick and we caused this error?
// :irc.server.net 433 mynick badnick :Nickname is already in use.
if (m_pTimer && sLine.Token(1) == "433" && sLine.Token(3).Equals(GetNick()))