1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 20:22:13 +01:00

re-organise the Help System functions into a class as static methods for future utility

This commit is contained in:
RichardAsh1981@gmail.com
2014-06-09 18:42:19 +00:00
parent 7e4f211c7b
commit fc3a7558ae
6 changed files with 27 additions and 18 deletions

View File

@@ -99,7 +99,7 @@ void LinkingHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link)
wxFileName( FileNames::HtmlHelpDir(), href.Mid( 10 ) + wxT(".htm") ).GetFullPath();
if( wxFileExists( FileName ) )
{
ShowHelpDialog(NULL, FileName, wxT(""));
HelpSystem::ShowHelpDialog(NULL, FileName, wxT(""));
return;
}
else