mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
modules: cleanup superfluous virtual keywords
These methods are not overriding anything or being overridden anywhere.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user