1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 17:11:20 +01: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

@@ -2799,7 +2799,7 @@ bool PluginManager::GetSubgroups(const wxString & group, wxArrayString & subgrou
wxString path = GetSettings()->GetPath();
GetSettings()->SetPath(group);
wxString name = wxEmptyString;
wxString name;
long index = 0;
if (GetSettings()->GetFirstGroup(name, index))
{
@@ -2832,7 +2832,7 @@ bool PluginManager::GetConfig(const wxString & key, wxString & value, const wxSt
if (!key.empty())
{
wxString wxval = wxEmptyString;
wxString wxval;
result = GetSettings()->Read(key, &wxval, defval);