mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-09 13:12:17 +01:00
More use of std:: style members of wxString...
... replacing: Length => length Len => length
This commit is contained in:
@@ -3050,7 +3050,7 @@ wxString PluginManager::ConvertID(const PluginID & ID)
|
||||
if (ID.StartsWith(wxT("base64:")))
|
||||
{
|
||||
wxString id = ID.Mid(7);
|
||||
ArrayOf<char> buf{ id.Length() / 4 * 3 };
|
||||
ArrayOf<char> buf{ id.length() / 4 * 3 };
|
||||
id = wxString::FromUTF8(buf.get(), b64decode(id, buf.get()));
|
||||
return id;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user