| 689 | } |
| 690 | |
| 691 | void TransactionControl::setupCallbacks() |
| 692 | { |
| 693 | std::function<void(FormsEvent * e)> onScrollChange = [this](FormsEvent *) |
| 694 | { |
| 695 | if (!this->suspendUpdates) |
| 696 | { |
| 697 | this->updateValues(); |
| 698 | } |
| 699 | }; |
| 700 | scrollBar->addCallback(FormEventType::ScrollBarChange, onScrollChange); |
| 701 | } |
| 702 | |
| 703 | int TransactionControl::getCrewDelta(int index) const |
| 704 | { |
no test coverage detected