diff options
Diffstat (limited to 'include/m_chat_int.h')
-rw-r--r-- | include/m_chat_int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index 5ad09897a2..033d5d36da 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -405,10 +405,10 @@ class MIR_APP_EXPORT CSrmmBaseDialog : public CDlgBase protected:
CSrmmBaseDialog(CMPluginBase&, int idDialog, SESSION_INFO *si = nullptr);
- virtual void OnInitDialog() override;
- virtual void OnDestroy() override;
+ bool OnInitDialog() override;
+ void OnDestroy() override;
- virtual INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam) override;
+ INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam) override;
int NotifyEvent(int code);
bool ProcessHotkeys(int key, bool bShift, bool bCtrl, bool bAlt);
|