diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-19 14:34:58 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-19 14:34:58 +0300 |
commit | 8bab65e5e51df9f5c70f9fd6d7e3fdb0771c37e9 (patch) | |
tree | ccde89c016d5b2f9e5b4902c7d500e7a11ceeb1c /protocols/JabberG/src/jabber_userinfo.cpp | |
parent | 9d2d33690533c01af99a1f22d019e55134b48ab5 (diff) |
fixes #4055 completely
Diffstat (limited to 'protocols/JabberG/src/jabber_userinfo.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_userinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_userinfo.cpp b/protocols/JabberG/src/jabber_userinfo.cpp index d2f11f2fa3..d606c55d4b 100644 --- a/protocols/JabberG/src/jabber_userinfo.cpp +++ b/protocols/JabberG/src/jabber_userinfo.cpp @@ -963,9 +963,9 @@ int CJabberProto::OnUserInfoInit(WPARAM wParam, LPARAM hContact) if (szProto != nullptr && !mir_strcmp(szProto, m_szModuleName)) {
USERINFOPAGE uip = {};
uip.dwInitParam = (LPARAM)this;
- uip.flags = ODPF_UNICODE | ODPF_USERINFOTAB | ODPF_ICON;
+ uip.flags = ODPF_UNICODE | ODPF_USERINFOTAB;
uip.szGroup.w = m_tszUserName;
- uip.dwInitParam = (LPARAM)Skin_GetProtoIcon(m_szModuleName, ID_STATUS_ONLINE);
+ uip.szProto = m_szModuleName;
uip.pDialog = new JabberUserInfoDlg(this);
uip.position = -2000000000;
|