1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-23 23:03:55 +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

@@ -174,7 +174,7 @@ class ToolFrame:public wxFrame
//
// Handle frame paint events
//
void OnPaint( wxPaintEvent & event )
void OnPaint( wxPaintEvent & WXUNUSED(event) )
{
wxPaintDC dc( this );
wxSize sz = GetSize();
@@ -264,7 +264,7 @@ class ToolFrame:public wxFrame
}
}
void OnCaptureLost( wxMouseCaptureLostEvent & event )
void OnCaptureLost( wxMouseCaptureLostEvent & WXUNUSED(event) )
{
if( HasCapture() )
{
@@ -824,6 +824,7 @@ bool ToolManager::IsVisible( int type )
return t->IsVisible();
#if 0
// If toolbar is floating
if( !t->IsDocked() )
{
@@ -833,6 +834,7 @@ bool ToolManager::IsVisible( int type )
// Return state of docked toolbar
return t->IsShown();
#endif
}
//