1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 06:01:13 +02:00

fixed "statement has no effect" warnings

This commit is contained in:
andheh
2018-02-15 13:11:45 +01:00
committed by James Crook
parent 3dd0ce0459
commit ade7854c1d
5 changed files with 10 additions and 9 deletions

View File

@@ -371,10 +371,11 @@ bool ScreenshotCommand::CaptureDock(
return Capture(context, mFileName, win, wxRect(x, y, width, height));
}
void ExploreMenu(
void ExploreMenu(
const CommandContext & context,
wxMenu * pMenu, int Id, int depth ){
Id;//compiler food.
static_cast<void>(Id);//compiler food.
if( !pMenu )
return;
@@ -482,7 +483,7 @@ void ScreenshotCommand::CapturePreferences(
}
}
void ScreenshotCommand::CaptureEffects(
void ScreenshotCommand::CaptureEffects(
const CommandContext & context,
AudacityProject * pProject, const wxString &mFileName )
{