MGR: convert HTML "&lt;" to "<" in Simple View Task Panel project description (needed for ABC@home)

This commit is contained in:
Charlie Fenton 2013-10-24 01:26:30 -07:00
parent ec07ab2a20
commit d823657a6e
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ void CScrolledTextBox::SetValue(const wxString& s) {
// Change all occurrences of "<sup>n</sup>" to "^n"
t.Replace(wxT("<sup>"), wxT("^"), true);
t.Replace(wxT("</sup>"), wxT(""), true);
t.Replace(wxT("&lt;"), wxT("<"), true);
wxSize taskPanelSize = GetGrandParent()->GetSize();
availableWidth = taskPanelSize.GetWidth() - (2*SIDEMARGINS);