| 538 | } |
| 539 | |
| 540 | QString UpdateDialog::GetNodeName(CountryId const & countryId) |
| 541 | { |
| 542 | // QString const text = QString::fromUtf8(GetStorage().CountryName(countryId).c_str()); // ??? |
| 543 | NodeAttrs attrs; |
| 544 | GetStorage().GetNodeAttrs(countryId, attrs); |
| 545 | return attrs.m_nodeLocalName.c_str(); |
| 546 | } |
| 547 | |
| 548 | QTreeWidgetItem * UpdateDialog::CreateTreeItem(CountryId const & countryId, size_t posInRanking, string matchedBy, |
| 549 | QTreeWidgetItem * parent) |
nothing calls this directly
no test coverage detected