| 26 | |
| 27 | |
| 28 | wxString HtmlColourOfIndex( int i ){ |
| 29 | wxColour c = theTheme.Colour(i); |
| 30 | return wxString::Format("\"#%02X%02X%02X\"", |
| 31 | c.Red(), c.Green(), c.Blue() ); |
| 32 | } |
| 33 | |
| 34 | static wxString WrapText( const wxString & Text ) |
| 35 | { |
no outgoing calls
no test coverage detected