mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 16:49:41 +02:00
Fix overload resolution of a call to HelpSystem::ShowHelp...
... formerly wxT("") matched bool, not wxString. Not what was meant!
This commit is contained in:
parent
32e40b3f7f
commit
2d17ddc100
@ -144,7 +144,7 @@ void LinkingHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link)
|
||||
wxFileName( FileNames::HtmlHelpDir(), href.Mid( 10 ) + wxT(".htm") ).GetFullPath();
|
||||
if( wxFileExists( FileName ) )
|
||||
{
|
||||
HelpSystem::ShowHelp(this, FileName, wxT(""));
|
||||
HelpSystem::ShowHelp(this, FileName, wxEmptyString);
|
||||
return;
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user