mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Remove unnecessary virtual keyword occurrences
This makes it convenient to 'grep virtual' and 'grep override' :)
This commit is contained in:
@@ -85,7 +85,7 @@ public:
|
||||
virtual ~CWebAdminMod() {
|
||||
}
|
||||
|
||||
virtual bool OnLoad(const CString& sArgStr, CString& sMessage) override {
|
||||
bool OnLoad(const CString& sArgStr, CString& sMessage) override {
|
||||
if (sArgStr.empty() || CModInfo::GlobalModule != GetType())
|
||||
return true;
|
||||
|
||||
@@ -418,8 +418,8 @@ public:
|
||||
return pNetwork;
|
||||
}
|
||||
|
||||
virtual CString GetWebMenuTitle() override { return "webadmin"; }
|
||||
virtual bool OnWebRequest(CWebSock& WebSock, const CString& sPageName, CTemplate& Tmpl) override {
|
||||
CString GetWebMenuTitle() override { return "webadmin"; }
|
||||
bool OnWebRequest(CWebSock& WebSock, const CString& sPageName, CTemplate& Tmpl) override {
|
||||
std::shared_ptr<CWebSession> spSession = WebSock.GetSession();
|
||||
|
||||
if (sPageName == "settings") {
|
||||
|
||||
Reference in New Issue
Block a user