diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-20 20:31:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-20 20:31:45 +0000 |
commit | 14c356f7b506bd3b9f8e2535c17ba7336b7df0f9 (patch) | |
tree | 754d7324fd1b8d24ff7da7d66ecd9a5f3c50773e /include | |
parent | 83c38ef95c18b7bb504ae246f2821e04416c5539 (diff) |
CDlgBase::m_first && CCtrlBase::m_next removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@13724 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index fe2a0e66a3..ffa03bbdb6 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -292,8 +292,6 @@ protected: enum { CLOSE_ON_OK = 0x1, CLOSE_ON_CANCEL = 0x2 };
BYTE m_autoClose; // automatically close dialog on IDOK/CANCEL commands. default: CLOSE_ON_OK|CLOSE_ON_CANCEL
- CCtrlBase* m_first;
-
// override this handlers to provide custom functionality
// general messages
virtual void OnInitDialog() { }
@@ -377,7 +375,6 @@ public: protected:
HWND m_hwnd; // must be the first data item
int m_idCtrl;
- CCtrlBase* m_next;
CDlgBase* m_parentWnd;
bool m_bChanged;
|