diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-01-23 15:00:26 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-01-23 18:24:41 +0100 |
commit | 94a6a7e5c9e98c7a43258bc2085024b525d0793e (patch) | |
tree | 02b016d39033f0b334ac084a8933a40293544204 /src/plugins/projectexplorer/localapplicationruncontrol.h | |
parent | 3d3f96c4c69e6b0361b453a31d6af83f2a84813a (diff) | |
download | qt-creator-94a6a7e5c9e98c7a43258bc2085024b525d0793e.tar.gz |
LocalApplicationRunControl: De-noise a bit
Change-Id: If4e5eebea2502bba3a85b8f8f87a9a81514f4fb5
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/localapplicationruncontrol.h')
-rw-r--r-- | src/plugins/projectexplorer/localapplicationruncontrol.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/plugins/projectexplorer/localapplicationruncontrol.h b/src/plugins/projectexplorer/localapplicationruncontrol.h index be2c2f6732..864dd72a34 100644 --- a/src/plugins/projectexplorer/localapplicationruncontrol.h +++ b/src/plugins/projectexplorer/localapplicationruncontrol.h @@ -44,9 +44,9 @@ class LocalApplicationRunControlFactory : public IRunControlFactory Q_OBJECT public: LocalApplicationRunControlFactory (); - virtual ~LocalApplicationRunControlFactory(); - virtual bool canRun(RunConfiguration *runConfiguration, RunMode mode) const; - virtual RunControl* create(RunConfiguration *runConfiguration, RunMode mode, QString *errorMessage); + ~LocalApplicationRunControlFactory(); + bool canRun(RunConfiguration *runConfiguration, RunMode mode) const; + RunControl* create(RunConfiguration *runConfiguration, RunMode mode, QString *errorMessage); }; class LocalApplicationRunControl : public RunControl @@ -54,10 +54,10 @@ class LocalApplicationRunControl : public RunControl Q_OBJECT public: LocalApplicationRunControl(LocalApplicationRunConfiguration *runConfiguration, RunMode mode); - virtual ~LocalApplicationRunControl(); - virtual void start(); - virtual StopResult stop(); - virtual bool isRunning() const; + ~LocalApplicationRunControl(); + void start(); + StopResult stop(); + bool isRunning() const; private slots: void processStarted(); void processExited(int exitCode, QProcess::ExitStatus status); @@ -67,7 +67,6 @@ private: QString m_executable; QString m_commandLineArguments; ApplicationLauncher::Mode m_runMode; - ProcessHandle m_applicationProcessHandle; bool m_running; }; |