mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 08:27:13 +01:00
Fix C4456 Warnings.
"C4456 declaration hides previous local declaration." These arise from repeated declarations of the same name.
This commit is contained in:
@@ -1875,9 +1875,9 @@ bool AudacityApp::CreateSingleInstanceChecker(const wxString &dir)
|
||||
if (parser->GetParamCount() > 0)
|
||||
{
|
||||
// Send each parameter to existing Audacity
|
||||
for (size_t i = 0, cnt = parser->GetParamCount(); i < cnt; i++)
|
||||
for (size_t j = 0, cnt = parser->GetParamCount(); j < cnt; j++)
|
||||
{
|
||||
ok = conn->Execute(parser->GetParam(i));
|
||||
ok = conn->Execute(parser->GetParam(j));
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user