mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-07 20:22:13 +01:00
Replace comparisons against "" with empty()
This commit is contained in:
@@ -263,7 +263,7 @@ void BenchmarkDialog::OnSave( wxCommandEvent & WXUNUSED(event))
|
||||
wxFD_SAVE | wxRESIZE_BORDER,
|
||||
this);
|
||||
|
||||
if (fName == wxT(""))
|
||||
if (fName.empty())
|
||||
return;
|
||||
|
||||
mText->SaveFile(fName);
|
||||
|
||||
Reference in New Issue
Block a user