| 26 | SelectionController::SelectionController(agi::Context *c) : context(c) { } |
| 27 | |
| 28 | void SelectionController::SetSelectedSet(Selection new_selection) { |
| 29 | selection = std::move(new_selection); |
| 30 | AnnounceSelectedSetChanged(); |
| 31 | } |
| 32 | |
| 33 | void SelectionController::SetActiveLine(AssDialogue *new_line) { |
| 34 | if (new_line != active_line) { |
no outgoing calls
no test coverage detected