diff options
author | George Hazan <ghazan@miranda.im> | 2022-09-11 09:48:50 -0700 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-09-11 09:48:50 -0700 |
commit | 7695eaff5071c5aa821eab4cedcad9fa58bc5b17 (patch) | |
tree | ce80ab9a345748627287cb88e4470105c69b26f9 /protocols/JabberG/src/jabber_opt.cpp | |
parent | 3f1da783c4c896f275d1920e214b0682802ebdaa (diff) |
fixes #3189 (Jabber: XEP-0198 не даёт перевести протокол в оффлайн, пока Миранда пытается переподключиться bug Jabber)
Diffstat (limited to 'protocols/JabberG/src/jabber_opt.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_opt.cpp b/protocols/JabberG/src/jabber_opt.cpp index dd3308ae2a..6c179defe7 100644 --- a/protocols/JabberG/src/jabber_opt.cpp +++ b/protocols/JabberG/src/jabber_opt.cpp @@ -257,7 +257,7 @@ public: ShowWindow(GetDlgItem(m_hwnd, IDC_PROGRESS_REG), SW_SHOW);
m_regInfo->pDlg = this;
- m_proto->ForkThread((CJabberProto::MyThreadFunc) & CJabberProto::ServerThread, m_regInfo);
+ m_proto->ForkThread((CJabberProto::MyThreadFunc)&CJabberProto::ServerThread, m_regInfo);
m_btnOk.SetText(TranslateT("Cancel"));
m_bProcessStarted = true;
|