1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 06:01:13 +02:00

Replace comparisons against wxEmptyString with empty()

This commit is contained in:
Paul Licameli
2019-03-14 16:20:18 -04:00
parent 50074f2cfe
commit b8c0125143
17 changed files with 29 additions and 29 deletions

View File

@@ -240,7 +240,7 @@ void AudacityLogger::OnSave(wxCommandEvent & WXUNUSED(e))
wxFD_SAVE | wxFD_OVERWRITE_PROMPT | wxRESIZE_BORDER,
mFrame.get());
if (fName == wxEmptyString) {
if (fName.empty()) {
return;
}