| 351 | } |
| 352 | |
| 353 | bool Deployer::undeploy() |
| 354 | { |
| 355 | if (QFile::exists(m_soDeployPath)) |
| 356 | QFile::remove(m_soDeployPath); |
| 357 | if (QFile::exists(m_cliDeployPath)) |
| 358 | QFile::remove(m_cliDeployPath); |
| 359 | |
| 360 | m_alreadyDeployed = false; |
| 361 | m_statusMessage = "CloudRedirect removed. Restart Steam to deactivate."; |
| 362 | emit statusMessageChanged(); |
| 363 | emit checkCompleted(); |
| 364 | return true; |
| 365 | } |
| 366 | |
| 367 | bool Deployer::purgeAll() |
| 368 | { |
nothing calls this directly
no outgoing calls
no test coverage detected