| 444 | } |
| 445 | |
| 446 | bool View::compare_trace_y(const Trace *a, const Trace *b) |
| 447 | { |
| 448 | assert(a); |
| 449 | assert(b); |
| 450 | |
| 451 | Trace *a1 = const_cast<Trace*>(a); |
| 452 | Trace *b1 = const_cast<Trace*>(b); |
| 453 | return a1->get_v_offset() < b1->get_v_offset(); |
| 454 | } |
| 455 | |
| 456 | void View::show_cursors(bool show) |
| 457 | { |
nothing calls this directly
no test coverage detected