diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-17 15:56:52 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-17 15:56:52 +0300 |
commit | 3e05d92dcb5f6c2017bc462554901ba27816bdb4 (patch) | |
tree | 3276a7c3527006b74afc00c197ab48a3a43b1e9e /include/m_chat_int.h | |
parent | e285d61d903c2616f5a7ea3026a1068ceb59b513 (diff) |
MNonCopyable - the common class to avoid declaring fake private constructors
Diffstat (limited to 'include/m_chat_int.h')
-rw-r--r-- | include/m_chat_int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index f3168a7fba..f366ca4052 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -399,8 +399,8 @@ EXTERN_C MIR_APP_DLL(LRESULT) CALLBACK stubNicklistProc(HWND hwnd, UINT msg, WPA class MIR_APP_EXPORT CSrmmBaseDialog : public CDlgBase
{
- CSrmmBaseDialog(const CSrmmBaseDialog&);
- CSrmmBaseDialog& operator=(const CSrmmBaseDialog&);
+ CSrmmBaseDialog(const CSrmmBaseDialog&) = delete;
+ CSrmmBaseDialog& operator=(const CSrmmBaseDialog&) = delete;
protected:
CSrmmBaseDialog(HINSTANCE hInst, int idDialog, SESSION_INFO *si = nullptr);
|