diff options
Diffstat (limited to 'include/m_gui.h')
-rw-r--r-- | include/m_gui.h | 7 |
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);
|