forked from organicmaps/organicmaps
[new-downloader] Fixed showing of countries names
This commit is contained in:
parent
5b49dcee14
commit
37f51ff6d7
2 changed files with 10 additions and 2 deletions
|
@ -311,10 +311,17 @@ namespace qt
|
|||
// SetRowColor(*item, rowColor);
|
||||
}
|
||||
|
||||
QTreeWidgetItem * UpdateDialog::CreateTreeItem(TCountryId const & countryId, QTreeWidgetItem * parent)
|
||||
QString UpdateDialog::GetNodeName(storage::TCountryId const & countryId)
|
||||
{
|
||||
// QString const text = QString::fromUtf8(GetStorage().CountryName(countryId).c_str()); // ???
|
||||
QString const text = countryId.c_str();
|
||||
storage::NodeAttrs attrs;
|
||||
GetStorage().GetNodeAttrs(countryId, attrs);
|
||||
return attrs.m_nodeLocalName.c_str();
|
||||
}
|
||||
|
||||
QTreeWidgetItem * UpdateDialog::CreateTreeItem(TCountryId const & countryId, QTreeWidgetItem * parent)
|
||||
{
|
||||
QString const text = GetNodeName(countryId);
|
||||
QTreeWidgetItem * item = new QTreeWidgetItem(parent, QStringList(text));
|
||||
item->setData(KColumnIndexCountry, Qt::UserRole, QVariant(countryId.c_str()));
|
||||
|
||||
|
|
|
@ -48,6 +48,7 @@ namespace qt
|
|||
void FillTreeImpl(QTreeWidgetItem * parent, storage::TCountryId const & countryId, string const & filter);
|
||||
void UpdateRowWithCountryInfo(storage::TCountryId const & countryId);
|
||||
void UpdateRowWithCountryInfo(QTreeWidgetItem * item, storage::TCountryId const & countryId);
|
||||
QString GetNodeName(storage::TCountryId const & countryId);
|
||||
|
||||
QTreeWidgetItem * CreateTreeItem(storage::TCountryId const & countryId, QTreeWidgetItem * parent);
|
||||
vector<QTreeWidgetItem *> GetTreeItemsByCountryId(storage::TCountryId const & countryId);
|
||||
|
|
Loading…
Add table
Reference in a new issue