[new-downloader] Fixed showing of countries names

This commit is contained in:
Constantin Shalnev 2016-02-11 19:49:16 +03:00 committed by Sergey Yershov
parent 5b49dcee14
commit 37f51ff6d7
2 changed files with 10 additions and 2 deletions

View file

@ -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()));

View file

@ -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);