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:
@@ -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:"),
|
||||
|
@@ -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());
|
||||
|
Reference in New Issue
Block a user