modules: cleanup superfluous virtual keywords

These methods are not overriding anything or being overridden anywhere.
This commit is contained in:
J-P Nurmi
2014-11-05 07:57:39 +01:00
parent f9318d02cf
commit e00e80a75a
5 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -346,7 +346,7 @@ public:
return(sRet);
}
virtual void Away(bool bForce = false, const CString & sReason = "")
void Away(bool bForce = false, const CString & sReason = "")
{
if ((!m_bIsAway) || (bForce))
{
@@ -370,7 +370,7 @@ public:
}
}
virtual void Back(bool bUsePrivMessage = false)
void Back(bool bUsePrivMessage = false)
{
PutIRC("away");
m_bIsAway = false;