summaryrefslogtreecommitdiff
path: root/protocols/Icq10/src/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Icq10/src/options.cpp')
-rw-r--r--protocols/Icq10/src/options.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/protocols/Icq10/src/options.cpp b/protocols/Icq10/src/options.cpp
index 90be6522e5..57ef15c9b2 100644
--- a/protocols/Icq10/src/options.cpp
+++ b/protocols/Icq10/src/options.cpp
@@ -156,7 +156,6 @@ void CIcqProto::OnLoginViaPhone(NETLIBHTTPREQUEST *pReply, AsyncHttpRequest *pRe
class CIcqOptionsDlg : public CProtoDlgBase<CIcqProto>
{
CCtrlEdit edtUin, edtPassword;
- CCtrlCheck chkSlowSend;
CCtrlButton btnCreate;
CMStringW wszOldPass;
@@ -165,17 +164,13 @@ public:
CProtoDlgBase<CIcqProto>(ppro, iDlgID),
edtUin(this, IDC_UIN),
btnCreate(this, IDC_REGISTER),
- edtPassword(this, IDC_PASSWORD),
- chkSlowSend(this, IDC_SLOWSEND)
+ edtPassword(this, IDC_PASSWORD)
{
btnCreate.OnClick = Callback(this, &CIcqOptionsDlg::onClick_Register);
CreateLink(edtUin, ppro->m_dwUin);
CreateLink(edtPassword, ppro->m_szPassword);
- if (bFullDlg)
- CreateLink(chkSlowSend, ppro->m_bSlowSend);
-
wszOldPass = ppro->m_szPassword;
}