mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-27 15:08:39 +01:00
Clean up most remaining MSVC warnings.
This commit is contained in:
@@ -203,7 +203,7 @@ NoteTrackVRulerMenuTable &NoteTrackVRulerMenuTable::Instance()
|
||||
return instance;
|
||||
}
|
||||
|
||||
void NoteTrackVRulerMenuTable::InitMenu(Menu *pMenu, void *pUserData)
|
||||
void NoteTrackVRulerMenuTable::InitMenu(Menu *WXUNUSED(pMenu), void *pUserData)
|
||||
{
|
||||
mpData = static_cast<InitMenuData*>(pUserData);
|
||||
}
|
||||
@@ -247,7 +247,7 @@ UIHandle::Result NoteTrackVZoomHandle::Release
|
||||
return RefreshNone;
|
||||
|
||||
const wxMouseEvent &event = evt.event;
|
||||
const bool shiftDown = event.ShiftDown();
|
||||
//const bool shiftDown = event.ShiftDown();
|
||||
const bool rightUp = event.RightUp();
|
||||
|
||||
|
||||
|
||||
@@ -131,7 +131,7 @@ public:
|
||||
|
||||
// Convenience wrapper for the above
|
||||
template<void (Scrubber::*pfn)(const CommandContext&)>
|
||||
void Thunk(wxCommandEvent &dummy)
|
||||
void Thunk(wxCommandEvent &)
|
||||
{ (this->*pfn)(*GetActiveProject()); }
|
||||
|
||||
// A string to put in the leftmost part of the status bar
|
||||
|
||||
Reference in New Issue
Block a user