| 182 | } |
| 183 | |
| 184 | void FvUpdater::SkipUpdate() |
| 185 | { |
| 186 | qDebug() << "Skip update"; |
| 187 | |
| 188 | FvAvailableUpdate* proposedUpdate = GetProposedUpdate(); |
| 189 | if (! proposedUpdate) { |
| 190 | qWarning() << "Proposed update is NULL (shouldn't be at this point)"; |
| 191 | return; |
| 192 | } |
| 193 | |
| 194 | // Start ignoring this particular version |
| 195 | FVIgnoredVersions::IgnoreVersion(proposedUpdate->GetEnclosureVersion()); |
| 196 | |
| 197 | hideUpdaterWindow(); |
| 198 | hideUpdateConfirmationDialog(); // if any; shouldn't be shown at this point, but who knows |
| 199 | } |
| 200 | |
| 201 | void FvUpdater::RemindMeLater() |
| 202 | { |
nothing calls this directly
no test coverage detected