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:
@@ -138,7 +138,7 @@ wxString FileNames::LowerCaseAppNameInPath( const wxString & dirIn){
|
||||
// BUG 1577 Capitalisation of Audacity in path...
|
||||
if( dir.EndsWith( "Audacity" ) )
|
||||
{
|
||||
int nChars = dir.Length() - wxString( "Audacity" ).Length();
|
||||
int nChars = dir.length() - wxString( "Audacity" ).length();
|
||||
dir = dir.Left( nChars ) + "audacity";
|
||||
}
|
||||
return dir;
|
||||
|
Reference in New Issue
Block a user