diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-15 14:33:49 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-15 14:33:49 +0300 |
commit | d5ed49db10c48031e98e92c0a577964b0581c794 (patch) | |
tree | 299805b4940321bd25c2290523b21f460fd8e4ad /protocols/ICQ-WIM/src/groups.cpp | |
parent | 57ff99c9525a7bc381392f28f2b54e3df3c45db1 (diff) |
CCtrlListView::addItem() doesn't add strings in the reverse order anymore
Diffstat (limited to 'protocols/ICQ-WIM/src/groups.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/groups.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ICQ-WIM/src/groups.cpp b/protocols/ICQ-WIM/src/groups.cpp index 29e1a97673..58bbe61311 100644 --- a/protocols/ICQ-WIM/src/groups.cpp +++ b/protocols/ICQ-WIM/src/groups.cpp @@ -57,7 +57,7 @@ public: { groups.DeleteAllItems(); - for (auto &it : m_proto->m_arGroups.rev_iter()) + for (auto &it : m_proto->m_arGroups) groups.AddItem(it->wszName, 0, (LPARAM)it); } |