mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-05 19:21:59 +01:00
Replace comparisons against "" with empty()
This commit is contained in:
@@ -312,7 +312,7 @@ void TimerRecordDialog::OnAutoSavePathButton_Click(wxCommandEvent& WXUNUSED(even
|
||||
wxFD_SAVE | wxRESIZE_BORDER,
|
||||
this);
|
||||
|
||||
if (fName == wxT(""))
|
||||
if (fName.empty())
|
||||
return;
|
||||
|
||||
AudacityProject* pProject = GetActiveProject();
|
||||
|
||||
Reference in New Issue
Block a user