1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

Remove unnecessary initializers for empty wxString

This commit is contained in:
Paul Licameli
2019-03-15 14:41:21 -04:00
parent 135c2a71ce
commit 06b3b42794
24 changed files with 32 additions and 45 deletions

View File

@@ -332,7 +332,7 @@ void OnExportMIDI(const CommandContext &context)
while(true) {
wxString fName = wxT("");
wxString fName;
fName = FileNames::SelectFile(FileNames::Operation::Export,
_("Export MIDI As:"),

View File

@@ -265,7 +265,7 @@ void AddEffectMenuItems(
name += wxT("...");
}
wxString group = wxEmptyString;
wxString group;
if (groupBy == wxT("sortby:publisher:name"))
{
group = EffectManager::Get().GetVendorName(plug->GetID());