From d5ed49db10c48031e98e92c0a577964b0581c794 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 15 Nov 2023 14:33:49 +0300 Subject: CCtrlListView::addItem() doesn't add strings in the reverse order anymore --- protocols/ICQ-WIM/src/groups.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocols') 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); } -- cgit v1.2.3