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:
@@ -297,11 +297,11 @@ void BenchmarkDialog::HoldPrint(bool hold)
|
||||
|
||||
void BenchmarkDialog::FlushPrint()
|
||||
{
|
||||
while(mToPrint.Length() > 100) {
|
||||
while(mToPrint.length() > 100) {
|
||||
mText->AppendText(mToPrint.Left(100));
|
||||
mToPrint = mToPrint.Right(mToPrint.Length() - 100);
|
||||
mToPrint = mToPrint.Right(mToPrint.length() - 100);
|
||||
}
|
||||
if (mToPrint.Length() > 0)
|
||||
if (mToPrint.length() > 0)
|
||||
mText->AppendText(mToPrint);
|
||||
mToPrint = wxT("");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user