mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 03:22:44 +02:00
making requested changes
This commit is contained in:
parent
35ed5031a3
commit
c8dade2060
2 changed files with 28 additions and 11 deletions
|
@ -150,19 +150,35 @@ void LauncherInstaller::uninstall() {
|
|||
qDebug() << "Failed to complete uninstall launcher";
|
||||
}
|
||||
return;
|
||||
} else {
|
||||
|
||||
bool deletedHQLauncherExe = deleteHQLauncherExecutable();
|
||||
if (deletedHQLauncherExe) {
|
||||
qDebug() << "Deleteing registry keys";
|
||||
deleteApplicationRegistryKeys();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool LauncherInstaller::deleteHQLauncherExecutable() {
|
||||
static const int MAX_DELETE_ATTEMPTS = 3;
|
||||
|
||||
int deleteAttempts = 0;
|
||||
bool fileRemoved = false;
|
||||
QString launcherPath = _launcherInstallDir.absoluteFilePath("HQ Launcher.exe");
|
||||
while (deleteAttempts < MAX_DELETE_ATTEMPTS) {
|
||||
fileRemoved = QFile::remove(launcherPath);
|
||||
if (fileRemoved) {
|
||||
break;
|
||||
}
|
||||
|
||||
timeDelay();
|
||||
deleteAttempts++;
|
||||
}
|
||||
|
||||
if (options->contains("--resumeUninstall")) {
|
||||
// delaying time here to make sure that the previous process exits
|
||||
// before we try to delete it the file.
|
||||
timeDelay();
|
||||
}
|
||||
QString launcherPath = _launcherInstallDir.absoluteFilePath("HQ Launcher.exe");
|
||||
if (QFile::exists(launcherPath)) {
|
||||
bool removed = QFile::remove(launcherPath);
|
||||
qDebug() << "Successfully removed " << launcherPath << ": " << removed;
|
||||
}
|
||||
deleteApplicationRegistryKeys();
|
||||
qDebug() << "Successfully removed " << launcherPath << ": " << fileRemoved;
|
||||
|
||||
return fileRemoved;
|
||||
}
|
||||
|
||||
void LauncherInstaller::deleteShortcuts() {
|
||||
|
|
|
@ -15,6 +15,7 @@ private:
|
|||
void createApplicationRegistryKeys();
|
||||
void deleteShortcuts();
|
||||
void deleteApplicationRegistryKeys();
|
||||
bool deleteHQLauncherExecutable();
|
||||
|
||||
QDir _launcherInstallDir;
|
||||
QDir _launcherApplicationsDir;
|
||||
|
|
Loading…
Reference in a new issue