mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
AAX: Support unicode track names for TrackProperties
This commit is contained in:
parent
0c89469ab6
commit
88ec2759cb
1 changed files with 1 additions and 1 deletions
|
|
@ -1146,7 +1146,7 @@ namespace AAXClasses
|
|||
if (data != nullptr)
|
||||
{
|
||||
AudioProcessor::TrackProperties props;
|
||||
props.name = static_cast<const AAX_IString*> (data)->Get();
|
||||
props.name = String::fromUTF8 (static_cast<const AAX_IString*> (data)->Get());
|
||||
|
||||
pluginInstance->updateTrackProperties (props);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue