1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-16 15:57:52 +01: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

@@ -150,7 +150,7 @@ void ExportMP2Options::PopulateOrExchange(ShuttleGui & S)
///
///
void ExportMP2Options::OnOK(wxCommandEvent& event)
void ExportMP2Options::OnOK(wxCommandEvent& WXUNUSED(event))
{
ShuttleGui S(this, eIsSavingToPrefs);
PopulateOrExchange(S);
@@ -212,7 +212,7 @@ void ExportMP2::Destroy()
int ExportMP2::Export(AudacityProject *project,
int channels, wxString fName,
bool selectionOnly, double t0, double t1, MixerSpec *mixerSpec, Tags *metadata,
int subformat)
int WXUNUSED(subformat))
{
bool stereo = (channels == 2);
long bitrate = gPrefs->Read(wxT("/FileFormats/MP2Bitrate"), 160);
@@ -332,7 +332,7 @@ int ExportMP2::Export(AudacityProject *project,
return updateResult;
}
bool ExportMP2::DisplayOptions(wxWindow *parent, int format)
bool ExportMP2::DisplayOptions(wxWindow *parent, int WXUNUSED(format))
{
ExportMP2Options od(parent);
@@ -342,7 +342,7 @@ bool ExportMP2::DisplayOptions(wxWindow *parent, int format)
}
// returns buffer len; caller frees
int ExportMP2::AddTags(AudacityProject *project, char **buffer, bool *endOfFile, Tags *tags)
int ExportMP2::AddTags(AudacityProject * WXUNUSED(project), char **buffer, bool *endOfFile, Tags *tags)
{
#ifdef USE_LIBID3TAG
struct id3_tag *tp = id3_tag_new();