mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-05 19:21:59 +01:00
More use of std:: style members of wxString...
... replacing: Length => length Len => length
This commit is contained in:
@@ -142,7 +142,7 @@ BlockFilePtr PCMAliasBlockFile::BuildFromXML(DirManager &dm, const wxChar **attr
|
||||
if (!wxStricmp(attr, wxT("summaryfile")) &&
|
||||
// Can't use XMLValueChecker::IsGoodFileName here, but do part of its test.
|
||||
XMLValueChecker::IsGoodFileString(strValue) &&
|
||||
(strValue.Length() + 1 + dm.GetProjectDataDir().Length() <= PLATFORM_MAX_PATH))
|
||||
(strValue.length() + 1 + dm.GetProjectDataDir().length() <= PLATFORM_MAX_PATH))
|
||||
{
|
||||
if (!dm.AssignFile(summaryFileName, strValue, false))
|
||||
// Make sure summaryFileName is back to uninitialized state so we can detect problem later.
|
||||
|
||||
Reference in New Issue
Block a user