aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-07-13 17:59:53 +0200
committerhjk <hjk@qt.io>2017-07-14 09:27:58 +0000
commit6a4499205067732d5dadc626eb6af8b1f783b919 (patch)
tree1ba5dea7c99ee1c7cfc5dfb3b8b2abe26dd9da5a /src/plugins/projectexplorer/applicationlauncher.h
parent77e32885a76bf7b0dd1821b0c591058bfd0df635 (diff)
Make ApplicationLauncher report QStrings, not QByteArray
Realistically, we only have UTF-8/plain ASCII messages, and if not then the conversion should happen when the message enters the "creator eco system" as there's potentially information on the actual encoding present, not at some random consumer further down the chain. Change-Id: Ie21199b99255f5c4d28fce3da7db2fd6c3bcfb3a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.h')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index 9e4ce57ebb..a8570dbbaa 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -74,8 +74,8 @@ signals:
void processExited(int exitCode, QProcess::ExitStatus);
void error(QProcess::ProcessError error);
- void remoteStdout(const QByteArray &output);
- void remoteStderr(const QByteArray &output);
+ void remoteStdout(const QString &output);
+ void remoteStderr(const QString &output);
void reportProgress(const QString &progressOutput);
void reportError(const QString &errorOutput);
void remoteProcessStarted();