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

Cleanup: Fixed lots of trivial MSVC warnings.

This commit is contained in:
james.k.crook@gmail.com
2013-08-25 21:51:26 +00:00
parent 969122a985
commit dba81b3f1c
108 changed files with 571 additions and 569 deletions

View File

@@ -146,18 +146,18 @@ void BatchCommandDialog::ValidateChoices()
{
}
void BatchCommandDialog::OnChoice(wxCommandEvent &event)
void BatchCommandDialog::OnChoice(wxCommandEvent & WXUNUSED(event))
{
}
void BatchCommandDialog::OnOk(wxCommandEvent &event)
void BatchCommandDialog::OnOk(wxCommandEvent & WXUNUSED(event))
{
mSelectedCommand = mCommand->GetValue().Strip(wxString::both);
mSelectedParameters = mParameters->GetValue().Strip(wxString::trailing);
EndModal(true);
}
void BatchCommandDialog::OnCancel(wxCommandEvent &event)
void BatchCommandDialog::OnCancel(wxCommandEvent & WXUNUSED(event))
{
EndModal(false);
}
@@ -173,7 +173,7 @@ void BatchCommandDialog::OnItemSelected(wxListEvent &event)
mEditParams->Enable( f != NULL );
}
void BatchCommandDialog::OnEditParams(wxCommandEvent &event)
void BatchCommandDialog::OnEditParams(wxCommandEvent & WXUNUSED(event))
{
wxString command = mCommand->GetValue();
wxString params = mParameters->GetValue();