| 183 | } |
| 184 | |
| 185 | void LabelTrack::SetLabel( size_t iLabel, const LabelStruct &newLabel ) |
| 186 | { |
| 187 | if( iLabel >= mLabels.size() ) { |
| 188 | wxASSERT( false ); |
| 189 | mLabels.resize( iLabel + 1 ); |
| 190 | } |
| 191 | mLabels[ iLabel ] = newLabel; |
| 192 | } |
| 193 | |
| 194 | LabelTrack::~LabelTrack() |
| 195 | { |
no test coverage detected