mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
More use of std:: style members of wxString...
... replacing: Length => length Len => length
This commit is contained in:
@@ -1016,7 +1016,7 @@ wxString AboutDialog::GetCreditsByRole(AboutDialog::Role role)
|
||||
|
||||
// Strip last <br>, if any
|
||||
if (s.Right(4) == wxT("<br>"))
|
||||
s = s.Left(s.Length() - 4);
|
||||
s = s.Left(s.length() - 4);
|
||||
|
||||
return s;
|
||||
}
|
||||
|
Reference in New Issue
Block a user