| 32 | } |
| 33 | |
| 34 | static wxString WrapText( const wxString & Text ) |
| 35 | { |
| 36 | return wxString(wxT(""))+ |
| 37 | wxT("<html><head></head>") + |
| 38 | wxT("<body bgcolor=") + HtmlColourOfIndex(clrTrackInfo) + wxT(">") + |
| 39 | wxT("<font color=") + HtmlColourOfIndex(clrTrackPanelText) + wxT(">") + |
| 40 | wxT("<p>") + Text + |
| 41 | wxT("</font>")+ |
| 42 | wxT("</body></html>"); |
| 43 | } |
| 44 | |
| 45 | static wxString InnerLink( const wxString &Key, const wxString& Text ) |
| 46 | { |
no test coverage detected