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

Leave arguments anonymous, remove unused variables in menu code...

... history window updates itself in response to events.  The intention was to
eliminate all mention of it in edit menu code.
This commit is contained in:
Paul Licameli
2018-10-29 13:35:56 -04:00
parent 87592cc89b
commit 5dc4185ce2
3 changed files with 3 additions and 11 deletions

View File

@@ -141,9 +141,8 @@ AudacityProject *DoImportMIDI(
struct Handler : CommandHandlerObject {
void OnNew(const CommandContext &context )
void OnNew(const CommandContext & )
{
(void)context;// Compiler food
CreateNewAudacityProject();
}