ProjectExplorer: Remove ApplicationLauncher::setProcessChannelMode

Not used anymore.

Change-Id: I2b5864cf321f0fed69ae6d8586e78a6017a42d1b
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
hjk
2022-05-09 14:43:57 +02:00
parent 6e1cfeaf3f
commit 639c3a5437
2 changed files with 0 additions and 6 deletions

View File

@@ -149,11 +149,6 @@ ApplicationLauncher::ApplicationLauncher(QObject *parent) : QObject(parent),
ApplicationLauncher::~ApplicationLauncher() = default; ApplicationLauncher::~ApplicationLauncher() = default;
void ApplicationLauncher::setProcessChannelMode(QProcess::ProcessChannelMode mode)
{
d->m_process.setProcessChannelMode(mode);
}
void ApplicationLauncher::setUseTerminal(bool on) void ApplicationLauncher::setUseTerminal(bool on)
{ {
d->m_process.setTerminalMode(on ? Utils::TerminalMode::On : Utils::TerminalMode::Off); d->m_process.setTerminalMode(on ? Utils::TerminalMode::On : Utils::TerminalMode::Off);

View File

@@ -53,7 +53,6 @@ public:
explicit ApplicationLauncher(QObject *parent = nullptr); explicit ApplicationLauncher(QObject *parent = nullptr);
~ApplicationLauncher() override; ~ApplicationLauncher() override;
void setProcessChannelMode(QProcess::ProcessChannelMode mode);
void setUseTerminal(bool on); void setUseTerminal(bool on);
void setRunAsRoot(bool on); void setRunAsRoot(bool on);
void setRunnable(const Runnable &runnable); void setRunnable(const Runnable &runnable);