1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-27 08:17:38 +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

@@ -60,7 +60,7 @@ END_EVENT_TABLE()
///
///
ExportOGGOptions::ExportOGGOptions(wxWindow *parent, int format)
ExportOGGOptions::ExportOGGOptions(wxWindow *parent, int WXUNUSED(format))
: wxDialog(parent, wxID_ANY,
wxString(_("Specify Ogg Vorbis Options")))
{
@@ -102,7 +102,7 @@ void ExportOGGOptions::PopulateOrExchange(ShuttleGui & S)
///
///
void ExportOGGOptions::OnOK(wxCommandEvent& event)
void ExportOGGOptions::OnOK(wxCommandEvent& WXUNUSED(event))
{
ShuttleGui S(this, eIsSavingToPrefs);
PopulateOrExchange(S);
@@ -170,7 +170,7 @@ int ExportOGG::Export(AudacityProject *project,
double t1,
MixerSpec *mixerSpec,
Tags *metadata,
int subformat)
int WXUNUSED(subformat))
{
double rate = project->GetRate();
TrackList *tracks = project->GetTracks();