In line of 50-55 of vstnoteexpressiontypes.cpp
if (_title)
UString (info.title, str16BufferSize (String128)).assign (_title);
if (_shortTitle)
UString (info.shortTitle, str16BufferSize (String128)).assign (_shortTitle);
if (_units)
UString (info.shortTitle, str16BufferSize (String128)).assign (_units);
ll. 55 should be:
UString (info.units, str16BufferSize (String128)).assign (_units);
ll. 77 also has the same flaw.
Regards,
suzumushi