[ios] Fix ios build after StringUtf8Multilang::Lang changes.

This commit is contained in:
tatiana-yan 2020-07-01 16:51:32 +03:00 committed by mpimenov
parent 6dbfce47b6
commit 54bc99e615

View file

@ -66,8 +66,8 @@ additionalSkipLanguageCodes:(std::vector<NSInteger>)additionalSkipLanguageCodes
MWMTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"ListCellIdentifier"];
NSInteger const index = indexPath.row;
StringUtf8Multilang::Lang const & language = m_languages[index];
cell.textLabel.text = @(language.m_name);
cell.detailTextLabel.text = @(language.m_code);
cell.textLabel.text = @(language.m_name.c_str());
cell.detailTextLabel.text = @(language.m_code.c_str());
int8_t const languageIndex = StringUtf8Multilang::GetLangIndex(language.m_code);
cell.accessoryType = UITableViewCellAccessoryNone;