| 161 | |
| 162 | |
| 163 | void COScopeCtrl::SetPlotColor(const wxColour& cr, unsigned iTrend) |
| 164 | { |
| 165 | PlotData_t* ppds = pdsTrends+iTrend; |
| 166 | if (ppds->crPlot == cr) |
| 167 | return; |
| 168 | ppds->crPlot = cr; |
| 169 | ppds->penPlot=*(wxThePenList->FindOrCreatePen(ppds->crPlot, 1, wxPENSTYLE_SOLID)); |
| 170 | InvalidateGraph(); |
| 171 | } |
| 172 | |
| 173 | |
| 174 | void COScopeCtrl::SetBackgroundColor(const wxColour& cr) |
no outgoing calls
no test coverage detected