mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 22:12:58 +02:00
Clean up some dead code and MSVC warnings.
- Dead code from experiments in SelectionBar removed. - Many warnings about unused parameters fixed with WXUNUSED() - Many warnings about signed / unsigned comparisons cleaned up. - Several 'local variable declared but not used' warnings fixed.
This commit is contained in:
@@ -1310,7 +1310,7 @@ auStaticText::auStaticText(wxWindow* parent, wxString textIn) :
|
||||
SetName(textIn);
|
||||
}
|
||||
|
||||
void auStaticText::OnPaint(wxPaintEvent & evt)
|
||||
void auStaticText::OnPaint(wxPaintEvent & WXUNUSED(evt))
|
||||
{
|
||||
wxPaintDC dc(this);
|
||||
//dc.SetTextForeground( theTheme.Colour( clrTrackPanelText));
|
||||
|
Reference in New Issue
Block a user