mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02: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:
@@ -535,7 +535,7 @@ public:
|
||||
|
||||
void OnDownload(wxCommandEvent & WXUNUSED(event))
|
||||
{
|
||||
HelpSystem::ShowHelpDialog(this, wxT("FAQ:Installation_and_Plug-Ins#ffdown"));
|
||||
HelpSystem::ShowHelp(this, wxT("FAQ:Installation_and_Plug-Ins#ffdown"));
|
||||
}
|
||||
|
||||
wxString GetLibPath()
|
||||
|
Reference in New Issue
Block a user