| 464 | int GetTrackHeight(const Track &track) override |
| 465 | { return IsWindowValid(mwWindow) ? mwWindow->GetTrackHeight(track) : 0; } |
| 466 | void SetChannelHeights(Track &track, unsigned height) override |
| 467 | { if (IsWindowValid(mwWindow)) mwWindow->SetChannelHeights(track, height); } |
| 468 | int GetTotalHeight(const TrackList &trackList) override |
| 469 | { return IsWindowValid(mwWindow) ? mwWindow->GetTotalHeight(trackList) : 0; } |
| 470 |
nothing calls this directly
no test coverage detected