MGR: Fix notices display under Mac OS 10.12.4

This commit is contained in:
Charlie Fenton 2017-04-09 02:48:28 -07:00
parent 980b8c8899
commit 91bcf1d665
1 changed files with 3 additions and 1 deletions

View File

@ -236,7 +236,9 @@ void CNoticeListCtrl::SetItemCount(int newCount) {
m_noticesBody += strBuffer;
}
m_noticesBody += wxT("</font></body></html>");
m_browser->SetPage(m_noticesBody, wxT("http://"));
// baseURL is not needed here (see comments above) and it
// must be an empty string for this to work under OS 10.12.4
m_browser->SetPage(m_noticesBody, wxEmptyString);
}