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

Some compilation fixes for EXPERIMENTAL_DA

This commit is contained in:
Paul Licameli 2020-03-10 15:55:02 -04:00
parent 867775ef99
commit 06b2831d9b
2 changed files with 6 additions and 3 deletions

View File

@ -95,8 +95,8 @@ static CommandFlagOptions result{
// "\n\nClick the Help button to learn more about selection methods."
);
#endif
return format.Format( Name );
#endif
return format.Format( Name );
},
"Selecting_Audio_-_the_basics",
XO("No Audio Selected")

View File

@ -502,9 +502,12 @@ BaseItemSharedPtr HelpMenu()
Command( wxT("QuickFix"), XXO("&Quick Fix..."), FN(OnQuickFix),
AlwaysEnabledFlag ),
// DA: 'Getting Started' rather than 'Quick Help'.
Command( wxT("QuickHelp"), XXO("&Getting Started"), FN(OnQuickHelp) ),
Command( wxT("QuickHelp"), XXO("&Getting Started"), FN(OnQuickHelp),
AlwaysEnabledFlag ),
// DA: Emphasise it is the Audacity Manual (No separate DA manual).
Command( wxT("Manual"), XXO("Audacity &Manual"), FN(OnManual) )
Command( wxT("Manual"), XXO("Audacity &Manual"), FN(OnManual),
AlwaysEnabledFlag )
#else
Command( wxT("QuickHelp"), XXO("&Quick Help..."), FN(OnQuickHelp),
AlwaysEnabledFlag ),