aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-03-01 09:55:32 +0100
committerhjk <hjk@qt.io>2017-03-01 16:26:18 +0000
commit716f6e7f1cfb757de51f8598cd74d7e3dff8d23a (patch)
tree594ed0537f175758fdd70b036d020821a0b3e5fd /src/plugins/projectexplorer/applicationlauncher.h
parent60cc07103a5397871dc10ebc57e08f4708d28c49 (diff)
ProjectExplorer: Make RunControl::bringApplicationToForeground virtual
No practical change as the only case that is used so far are local setups on Mac. It's a conceptual change, though, giving concrete RunControl implementation the chance to act "sensibly", e.g. by raising a locally running simulator control in case of remote setups or such. Change-Id: I5679428934fe08b8c9756f3906ee3d9073278822 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.h')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index e27729722b..8e7827f191 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -65,7 +65,7 @@ signals:
void appendMessage(const QString &message, Utils::OutputFormat format);
void processStarted();
void processExited(int exitCode, QProcess::ExitStatus);
- void bringToForegroundRequested(qint64 pid);
+ void bringToForegroundRequested();
void error(QProcess::ProcessError error);
private: