diff --git a/src/analyzerconsole.h b/src/analyzerconsole.h index c52d917fe6..064f043f7e 100644 --- a/src/analyzerconsole.h +++ b/src/analyzerconsole.h @@ -69,8 +69,8 @@ class CAnalyzerConsole : public CBaseDlg CAnalyzerConsole ( CClient* pNCliP, QWidget* parent = nullptr ); protected: - virtual void showEvent ( QShowEvent* ); - virtual void hideEvent ( QHideEvent* ); + virtual void showEvent ( QShowEvent* ) override; + virtual void hideEvent ( QHideEvent* ) override; void DrawFrame(); void DrawErrorRateTrace(); diff --git a/src/connectdlg.h b/src/connectdlg.h index 5791e7a924..0b2eb8d7ae 100644 --- a/src/connectdlg.h +++ b/src/connectdlg.h @@ -115,8 +115,8 @@ class CConnectDlg : public CBaseDlg, private Ui_CConnectDlgBase }; protected: - virtual void showEvent ( QShowEvent* ); - virtual void hideEvent ( QHideEvent* ); + virtual void showEvent ( QShowEvent* ) override; + virtual void hideEvent ( QHideEvent* ) override; CMappedTreeWidgetItem* FindListViewItem ( const CHostAddress& InetAddr ); CMappedTreeWidgetItem* GetParentListViewItem ( QTreeWidgetItem* pItem );