| 1434 | } |
| 1435 | |
| 1436 | auto Updater::state() const -> State { |
| 1437 | if (_action == Action::Ready) { |
| 1438 | return State::Ready; |
| 1439 | } else if (_action == Action::Loading) { |
| 1440 | return State::Download; |
| 1441 | } |
| 1442 | return State::None; |
| 1443 | } |
| 1444 | |
| 1445 | int Updater::size() const { |
| 1446 | return _activeLoader ? _activeLoader->totalSize() : 0; |
no outgoing calls
no test coverage detected