mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
More use of std:: style members of wxString...
... replacing: Length => length Len => length
This commit is contained in:
@@ -1302,7 +1302,7 @@ void TrackInfo::CloseTitleDrawFunction
|
||||
wxCoord textWidth, textHeight;
|
||||
dc->GetTextExtent(titleStr, &textWidth, &textHeight);
|
||||
while (textWidth > allowableWidth) {
|
||||
titleStr = titleStr.Left(titleStr.Length() - 1);
|
||||
titleStr = titleStr.Left(titleStr.length() - 1);
|
||||
dc->GetTextExtent(titleStr, &textWidth, &textHeight);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user