From feda8a7db8d1d7c5439aa8f8feef7cc0dd2b59a0 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Fri, 27 Jul 2018 23:51:12 -0400 Subject: New upstream version 3.2.1+dfsg1 --- SQLiteStudio3/UpdateSQLiteStudio/main.cpp | 49 ------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 SQLiteStudio3/UpdateSQLiteStudio/main.cpp (limited to 'SQLiteStudio3/UpdateSQLiteStudio/main.cpp') diff --git a/SQLiteStudio3/UpdateSQLiteStudio/main.cpp b/SQLiteStudio3/UpdateSQLiteStudio/main.cpp deleted file mode 100644 index e5730d3..0000000 --- a/SQLiteStudio3/UpdateSQLiteStudio/main.cpp +++ /dev/null @@ -1,49 +0,0 @@ -#include "services/updatemanager.h" -#include -#include -#include -#include -#include -#include - -int main(int argc, char *argv[]) -{ - QCoreApplication app(argc, argv); - - QString path = app.applicationDirPath() + QLatin1Char('/') + UpdateManager::WIN_INSTALL_FILE; - QFile installFile(path); - if (QFileInfo(path).isReadable()) - { - installFile.open(QIODevice::ReadOnly); - QTextStream inStr(&installFile); - QString option = inStr.readLine(); - QString backupDir = inStr.readLine(); - QString appDir = inStr.readLine(); - installFile.close(); - installFile.remove(); - - QString tempDir = app.applicationDirPath(); - if (option == UpdateManager::UPDATE_OPTION_NAME) - { - bool res = UpdateManager::executeFinalStep(tempDir, backupDir, appDir); - if (res) - { - QFile doneFile(appDir + QLatin1Char('/') + UpdateManager::WIN_UPDATE_DONE_FILE); - doneFile.open(QIODevice::WriteOnly); - doneFile.close(); - } - else - qCritical() << QString("Could not execute final step with root priviledges: %1").arg(UpdateManager::getStaticErrorMessage()); - } - else - { - qCritical() << QString("Option passed to updater not matched: '%1' != '%2'").arg(option, UpdateManager::UPDATE_OPTION_NAME); - } - } - else - { - qCritical() << QString("Updater installation file (%1) was not readable.").arg(path); - } - - return 0; -} -- cgit v1.2.3