summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-03-12 17:30:16 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-03-12 17:30:16 +0300
commit3044271442e390df114574992db11365578aad0e (patch)
tree9aabca7c4b8e3d2c431aecedfaf05db0d1bf5fc6 /include
parent62c85038cd5f3dcc53f3fb60549b6130532db236 (diff)
- unused member CDbLink::m_bSigned removed;
- obsolete CCtrlBase private members removed;
Diffstat (limited to 'include')
-rw-r--r--include/m_gui.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/m_gui.h b/include/m_gui.h
index 28cc1dc958..a5d50beaa3 100644
--- a/include/m_gui.h
+++ b/include/m_gui.h
@@ -316,7 +316,6 @@ class MIR_CORE_EXPORT CDbLink : public CDataLink
{
char *m_szModule;
char *m_szSetting;
- bool m_bSigned;
DWORD m_iDefault;
wchar_t *m_szDefault;
@@ -504,10 +503,8 @@ class MIR_CORE_EXPORT CCtrlBase
{
friend class CDlgBase;
- __forceinline CCtrlBase(const CCtrlBase&) {}
- __forceinline CCtrlBase& operator=(const CCtrlBase&) { return *this; }
-
- __forceinline CCtrlBase(HWND hwnd) : m_hwnd(hwnd) {}
+ __forceinline CCtrlBase(const CCtrlBase&) = delete;
+ __forceinline CCtrlBase& operator=(const CCtrlBase&) = delete;
public:
CCtrlBase(CDlgBase *wnd, int idCtrl);