From 9e24ff326b8b21ad40482c448ba43934cc92747c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 11 Apr 2025 14:54:36 +0300 Subject: =?UTF-8?q?fixes=20#4973=20(Telegram:=20=D0=B5=D1=81=D0=BB=D0=B8?= =?UTF-8?q?=20=D1=81=D0=BE=D0=B1=D0=B5=D1=81=D0=B5=D0=B4=D0=BD=D0=B8=D0=BA?= =?UTF-8?q?=20=D1=83=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB=20=D0=B0=D0=BA=D0=BA?= =?UTF-8?q?=D0=B0=D1=83=D0=BD=D1=82,=20=D1=82=D0=BE=D1=82=20=D1=83=D0=B4?= =?UTF-8?q?=D0=B0=D0=BB=D1=8F=D0=B5=D1=82=D1=81=D1=8F=20=D0=B8=D0=B7=20?= =?UTF-8?q?=D0=B1=D0=B0=D0=B7=D1=8B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protocols/Telegram/src/options.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'protocols/Telegram/src/options.cpp') diff --git a/protocols/Telegram/src/options.cpp b/protocols/Telegram/src/options.cpp index c326e2925b..04a741e829 100644 --- a/protocols/Telegram/src/options.cpp +++ b/protocols/Telegram/src/options.cpp @@ -22,7 +22,7 @@ along with this program. If not, see . class COptionsDlg : public CTelegramDlgBase { CCtrlButton btnLogout; - CCtrlCheck chkHideChats, chkCompressFiles, chkIncludePreviews, chkResidentChannels; + CCtrlCheck chkHideChats, chkCompressFiles, chkIncludePreviews, chkResidentChannels, chkDeleteContacts; CCtrlCombo cmbCountry; CCtrlEdit edtGroup, edtPhone, edtDeviceName; ptrW m_wszOldGroup; @@ -37,6 +37,7 @@ public: edtGroup(this, IDC_DEFGROUP), edtDeviceName(this, IDC_DEVICE_NAME), chkCompressFiles(this, IDC_COMPRESS_FILES), + chkDeleteContacts(this, IDC_DELETE_CONTACTS), chkIncludePreviews(this, IDC_USE_PREVIEW), chkResidentChannels(this, IDC_RESIDENT_CHANNELS), m_wszOldGroup(mir_wstrdup(ppro->m_wszDefaultGroup)) @@ -48,6 +49,7 @@ public: if (bFullDlg) { CreateLink(chkCompressFiles, ppro->m_bCompressFiles); + CreateLink(chkDeleteContacts, ppro->m_bDeleteContacts); CreateLink(chkIncludePreviews, ppro->m_bIncludePreviews); CreateLink(chkResidentChannels, ppro->m_bResidentChannels); } -- cgit v1.2.3