mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-05 14:11:00 +01:00
Conversion of TranslatableString to wxString is private
This commit is contained in:
@@ -293,7 +293,10 @@ void GetLanguages(
|
||||
reverseHash[tempNames[j]] = tempCodes[j];
|
||||
}
|
||||
|
||||
std::sort( tempNames.begin(), tempNames.end() );
|
||||
std::sort( tempNames.begin(), tempNames.end(),
|
||||
[]( const TranslatableString &a, const TranslatableString &b ){
|
||||
return a.Translation() < b.Translation();
|
||||
} );
|
||||
|
||||
// Add system language
|
||||
langNames.push_back(XO("System"));
|
||||
|
||||
Reference in New Issue
Block a user