MGR: To allow WCG and other "branded" BOINC Managers to customize the "More info ..." hyperlink in the Diagnostic Log Flags dialog, build the URL using the value from the skin's <organization_help_url> field.

This commit is contained in:
Charlie Fenton 2014-12-26 02:55:53 -08:00
parent cb2778ee75
commit 17dd223b21
1 changed files with 6 additions and 1 deletions

View File

@ -87,7 +87,12 @@ CDlgDiagnosticLogFlags::CDlgDiagnosticLogFlags(wxWindow* parent) :
m_headingSizer->Add(m_heading, 1, wxLEFT | wxRIGHT, 25);
wxString helpURL = wxT("http://boinc.berkeley.edu/manager_links.php?target=notice&controlid=log_flags");
wxString strURL = pSkinAdvanced->GetOrganizationHelpUrl();
wxString helpURL;
helpURL.Printf(
wxT("%s?target=notice&controlid=log_flags"),
strURL.c_str()
);
m_headingSizer->Add(
new wxHyperlinkCtrl(