1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-16 16:20:50 +02:00

OnShowEffectsRack follows the unused argument convention

This commit is contained in:
Paul Licameli 2018-02-22 00:17:30 -05:00
parent 7134ca662f
commit d77daa027e
2 changed files with 2 additions and 2 deletions

View File

@ -6825,7 +6825,7 @@ void AudacityProject::OnResetToolBars(const CommandContext &WXUNUSED(context) )
} }
#if defined(EXPERIMENTAL_EFFECTS_RACK) #if defined(EXPERIMENTAL_EFFECTS_RACK)
void AudacityProject::OnShowEffectsRack(const CommandContext &) void AudacityProject::OnShowEffectsRack(const CommandContext &WXUNUSED(context) )
{ {
EffectManager::Get().ShowRack(); EffectManager::Get().ShowRack();
} }

View File

@ -382,7 +382,7 @@ void OnShowTranscriptionToolBar(const CommandContext &context );
void OnResetToolBars(const CommandContext &context ); void OnResetToolBars(const CommandContext &context );
#if defined(EXPERIMENTAL_EFFECTS_RACK) #if defined(EXPERIMENTAL_EFFECTS_RACK)
void OnShowEffectsRack(const CommandContext &); void OnShowEffectsRack(const CommandContext &context );
#endif #endif
// Transport Menu // Transport Menu