| 286 | } |
| 287 | |
| 288 | void TypesController::rowClicked(not_null<PeerListRow*> row) { |
| 289 | const auto checked = !row->checked(); |
| 290 | delegate()->peerListSetRowChecked(row, checked); |
| 291 | _rowSelectionChanges.fire({ row, checked }); |
| 292 | } |
| 293 | |
| 294 | rpl::producer<bool> TypesController::specialChanges() const { |
| 295 | return _rowSelectionChanges.events( |
nothing calls this directly
no test coverage detected