1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-09 06:06:24 +01:00

ManualPageID is a new type; rewrite HelpSystem::ShowHelp and its uses

This commit is contained in:
Paul Licameli
2021-06-06 15:40:11 -04:00
parent cfbdd2d22e
commit 132f04d272
20 changed files with 48 additions and 45 deletions

View File

@@ -309,7 +309,7 @@ void OnQuickHelp(const CommandContext &context)
auto &project = context.project;
HelpSystem::ShowHelp(
&GetProjectFrame( project ),
wxT("Quick_Help"));
L"Quick_Help");
}
void OnManual(const CommandContext &context)
@@ -317,7 +317,7 @@ void OnManual(const CommandContext &context)
auto &project = context.project;
HelpSystem::ShowHelp(
&GetProjectFrame( project ),
wxT("Main_Page"));
L"Main_Page");
}
void OnAudioDeviceInfo(const CommandContext &context)