fix for pip3

This commit is contained in:
Бычков Андрей
2022-08-05 17:04:40 +03:00
parent 7a16d76753
commit 216bd5afd0
2 changed files with 3 additions and 3 deletions

View File

@@ -402,7 +402,7 @@ void CDItemModel::buildItem(CDItem * it, CDSection & r) {
auto j = r.s.makeIterator();
while (j.next()) {
it->childs << new CDItem(interface, j.key(), CDItem::ItemCDSection, it);
buildItem(it->childs.back(), j.valueRef());
buildItem(it->childs.back(), j.value());
}
}