mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-20 07:46:30 +01:00
Use alpha or released or local manual for "help on selection".
Previously this was hard coded to use the online alphamanual. Some other help-on-errors paths were hardcoded to use the online manual, and did not use local help even if available, so these were changed too. Also two naming changes in the code: ShowHelpDialog() became ShowHelp() because it typically shows the help in your browser, only showing the help in a dialog under certain circumstances. The helpURL parameter became helpPage since it is usually a page name that is then elaborated into a url. The Link() function became InnerLink(). Some careful http -> https changes made too.
This commit is contained in:
@@ -356,7 +356,7 @@ void TimerRecordDialog::OnAutoExportCheckBox_Change(wxCommandEvent& WXUNUSED(eve
|
||||
|
||||
void TimerRecordDialog::OnHelpButtonClick(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
HelpSystem::ShowHelpDialog(this, wxT("Timer_Record"), true);
|
||||
HelpSystem::ShowHelp(this, wxT("Timer_Record"), true);
|
||||
}
|
||||
|
||||
void TimerRecordDialog::OnOK(wxCommandEvent& WXUNUSED(event))
|
||||
|
||||
Reference in New Issue
Block a user