Select everything we can select */
| 866 | |
| 867 | /** Select everything we can select */ |
| 868 | void ClientNetworkContentSocketHandler::SelectAll() |
| 869 | { |
| 870 | for (const auto &ci : this->infos) { |
| 871 | if (ci->state == ContentInfo::State::Unselected) { |
| 872 | ci->state = ContentInfo::State::Selected; |
| 873 | this->CheckDependencyState(*ci); |
| 874 | } |
| 875 | } |
| 876 | } |
| 877 | |
| 878 | /** Select everything that's an update for something we've got */ |
| 879 | void ClientNetworkContentSocketHandler::SelectUpgrade() |
no test coverage detected