aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/main.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-01-21 14:38:50 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-01-21 15:06:28 +0000
commit1f0ecd600e7ddf184ef248c64aad6444462950ec (patch)
treecdd1bf9f75e65aabb1815808874ca0bda0700690 /src/app/main.cpp
parent74f522e0de2e348ab3b673eeb60796f7ab2d8c88 (diff)
Move TerminalCommand into a separate file
This will ease the ConsoleProcess and QtcProcess unification. Change-Id: Idda9ad393d184088c3e3a734389761d7176bd0c0 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/app/main.cpp')
-rw-r--r--src/app/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp
index 381ab9229ff..d9e91f21d17 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -33,7 +33,6 @@
#include <qtsingleapplication.h>
#include <utils/algorithm.h>
-#include <utils/consoleprocess.h>
#include <utils/environment.h>
#include <utils/fileutils.h>
#include <utils/hostosinfo.h>
@@ -41,6 +40,7 @@
#include <utils/qtcsettings.h>
#include <utils/singleton.h>
#include <utils/temporarydirectory.h>
+#include <utils/terminalcommand.h>
#include <QDebug>
#include <QDir>
@@ -552,7 +552,7 @@ int main(int argc, char **argv)
QSettings::SystemScope,
QLatin1String(Core::Constants::IDE_SETTINGSVARIANT_STR),
QLatin1String(Core::Constants::IDE_CASED_ID));
- Utils::ConsoleProcess::setSettings(settings);
+ Utils::TerminalCommand::setSettings(settings);
loadFonts();
if (Utils::HostOsInfo::isWindowsHost()