diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-02 23:45:01 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-02 23:45:01 +0300 |
commit | f71d5710c74fa70ea77dfcb9faa7818b7d3be72e (patch) | |
tree | 398257df42d9ee30a822b7d24c57197e7f3431fd /protocols/Icq10/src | |
parent | bd007cf5a03ba398546b343a8b7be8aab081dbaa (diff) |
we need to refresh data if phone reg succeeded
Diffstat (limited to 'protocols/Icq10/src')
-rw-r--r-- | protocols/Icq10/src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Icq10/src/options.cpp b/protocols/Icq10/src/options.cpp index 357e8617bf..084e3f4d3d 100644 --- a/protocols/Icq10/src/options.cpp +++ b/protocols/Icq10/src/options.cpp @@ -173,8 +173,8 @@ public: CIcqRegistrationDlg dlg(m_proto); dlg.SetParent(m_hwnd); if (dlg.DoModal()) { - m_proto->m_dwUin = m_proto->getDword(DB_KEY_UIN); - m_proto->m_szPassword = L""; + edtUin.SetInt(m_proto->getDword(DB_KEY_UIN)); + edtPassword.SetText(L""); } } }; |