diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-04 22:10:26 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-04 22:10:26 +0300 |
commit | 6b12ab62f6aee61ded7bf4fab76b93975785e721 (patch) | |
tree | c2986d26afef18d3b9e270c44948fa252d3514f9 /plugins/MenuItemEx/src/options.cpp | |
parent | 260827b1bf896a14ade03af934be78f210dcd1f6 (diff) |
MenuItemEx: Request Auth menu item removed
Diffstat (limited to 'plugins/MenuItemEx/src/options.cpp')
-rw-r--r-- | plugins/MenuItemEx/src/options.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/MenuItemEx/src/options.cpp b/plugins/MenuItemEx/src/options.cpp index 53788af1cf..2fc76947a7 100644 --- a/plugins/MenuItemEx/src/options.cpp +++ b/plugins/MenuItemEx/src/options.cpp @@ -17,7 +17,6 @@ static const checkboxes[] = { { IDC_IGNORE, VF_IGN },
{ IDC_IGNOREHIDE, VF_IGNH },
{ IDC_PROTOS, VF_PROTO },
- { IDC_AUTHREQ, VF_REQ },
{ IDC_SHOWID, VF_SHOWID },
{ IDC_COPYIDNAME, VF_CIDN },
{ IDC_RECVFILES, VF_RECV },
@@ -29,7 +28,7 @@ class COptDialog : public CDlgBase {
DWORD m_flags;
- CCtrlCheck m_chkVis, m_chkAlpha, m_chkHide, m_chkIgnore, m_chkProtos, m_chkAuthReq, m_chkRecvFiles, m_chkCopyIP, m_chkCopyMirver, m_chkStatusMsg,
+ CCtrlCheck m_chkVis, m_chkAlpha, m_chkHide, m_chkIgnore, m_chkProtos, m_chkRecvFiles, m_chkCopyIP, m_chkCopyMirver, m_chkStatusMsg,
m_chkSMName, m_chkCopyID, m_chkCopyIDName, m_chkShowID, m_chkTrimID, m_chkIgnoreHide;
CCtrlLabel m_lblHint;
@@ -51,7 +50,6 @@ public: m_chkHide(this, IDC_HIDE),
m_chkIgnore(this, IDC_IGNORE),
m_chkProtos(this, IDC_PROTOS),
- m_chkAuthReq(this, IDC_AUTHREQ),
m_chkRecvFiles(this, IDC_RECVFILES),
m_chkCopyIP(this, IDC_COPYIP),
m_chkCopyMirver(this, IDC_COPYMIRVER),
|