forked from organicmaps/organicmaps-tmp
[ios] Fix ios build after StringUtf8Multilang::Lang changes.
This commit is contained in:
parent
6dbfce47b6
commit
54bc99e615
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue