mirror of
https://github.com/znc/znc.git
synced 2026-05-18 15:25:53 +02:00
Remove unnecessary virtual keyword occurrences
This makes it convenient to 'grep virtual' and 'grep override' :)
This commit is contained in:
+3
-3
@@ -59,7 +59,7 @@ public:
|
||||
return (CFile::Exists(PemFile()));
|
||||
}
|
||||
|
||||
virtual EModRet OnIRCConnecting(CIRCSock *pIRCSock) override {
|
||||
EModRet OnIRCConnecting(CIRCSock *pIRCSock) override {
|
||||
if (HasPemFile()) {
|
||||
pIRCSock->SetPemLocation(PemFile());
|
||||
}
|
||||
@@ -67,9 +67,9 @@ public:
|
||||
return CONTINUE;
|
||||
}
|
||||
|
||||
virtual CString GetWebMenuTitle() override { return "Certificate"; }
|
||||
CString GetWebMenuTitle() override { return "Certificate"; }
|
||||
|
||||
virtual bool OnWebRequest(CWebSock& WebSock, const CString& sPageName, CTemplate& Tmpl) override {
|
||||
bool OnWebRequest(CWebSock& WebSock, const CString& sPageName, CTemplate& Tmpl) override {
|
||||
if (sPageName == "index") {
|
||||
Tmpl["Cert"] = CString(HasPemFile());
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user