summaryrefslogtreecommitdiff
path: root/protocols/Icq10/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-01-02 23:45:01 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-01-02 23:45:01 +0300
commitf71d5710c74fa70ea77dfcb9faa7818b7d3be72e (patch)
tree398257df42d9ee30a822b7d24c57197e7f3431fd /protocols/Icq10/src
parentbd007cf5a03ba398546b343a8b7be8aab081dbaa (diff)
we need to refresh data if phone reg succeeded
Diffstat (limited to 'protocols/Icq10/src')
-rw-r--r--protocols/Icq10/src/options.cpp4
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"");
}
}
};