1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-21 16:37:12 +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

@@ -589,10 +589,10 @@ public:
{
};
bool OnExecute(const wxString & topic,
bool OnExecute(const wxString & WXUNUSED(topic),
wxChar *data,
int size,
wxIPCFormat format)
int WXUNUSED(size),
wxIPCFormat WXUNUSED(format))
{
if (!gInited) {
return false;
@@ -826,7 +826,7 @@ bool AudacityApp::MRUOpen(wxString fullPathStr) {
return(true);
}
void AudacityApp::OnMRUClear(wxCommandEvent& event)
void AudacityApp::OnMRUClear(wxCommandEvent& WXUNUSED(event))
{
mRecentFiles->Clear();
}
@@ -847,7 +847,7 @@ void AudacityApp::OnMRUFile(wxCommandEvent& event) {
mRecentFiles->RemoveFileFromHistory(n);
}
void AudacityApp::OnTimer(wxTimerEvent& event)
void AudacityApp::OnTimer(wxTimerEvent& WXUNUSED(event))
{
// Check if a warning for missing aliased files should be displayed
if (ShouldShowMissingAliasedFileWarning()) {