diff options
author | George Hazan <george.hazan@gmail.com> | 2023-06-19 14:48:33 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-06-19 14:48:33 +0300 |
commit | 9439b05189ce9db2cbe552796995cf67126af308 (patch) | |
tree | 0b360ab24a0f7e3969b096293cbaa56801a76cee /src/core | |
parent | a6bb80933c2984cf9a703e6dae6f1f18851c19b6 (diff) |
SESSION_INFO: separate list for the interface support eliminated, now there's the only list of USERINFO sorted by their unique IDs
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdmsg/src/msgdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdmsg/src/msgdialog.cpp b/src/core/stdmsg/src/msgdialog.cpp index a13c704257..4254e28119 100644 --- a/src/core/stdmsg/src/msgdialog.cpp +++ b/src/core/stdmsg/src/msgdialog.cpp @@ -1488,7 +1488,7 @@ void CMsgDialog::UpdateTitle() {
wchar_t newtitle[256];
if (isChat()) {
- int nUsers = m_si->getUserList().getCount();
+ int nUsers = m_nickList.GetCount();
switch (m_si->iType) {
case GCW_CHATROOM:
|