summaryrefslogtreecommitdiff
path: root/libre/qtcreator/qtcreatorbug-19367b.patch
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-03-29 08:30:07 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-03-29 08:30:07 +0100
commit58aca5610d21eed65ac4ee4b5f44d2298cf8f886 (patch)
tree6ef63985709325fb0750b73fba0b6ed56c861741 /libre/qtcreator/qtcreatorbug-19367b.patch
parent7b7b2ff2f189b8c48a8299f4972a9f2cfd9f91d9 (diff)
downloadabslibre-58aca5610d21eed65ac4ee4b5f44d2298cf8f886.tar.gz
abslibre-58aca5610d21eed65ac4ee4b5f44d2298cf8f886.tar.bz2
abslibre-58aca5610d21eed65ac4ee4b5f44d2298cf8f886.zip
libre/qtcreator: updated to 4.8.2
Diffstat (limited to 'libre/qtcreator/qtcreatorbug-19367b.patch')
-rw-r--r--libre/qtcreator/qtcreatorbug-19367b.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/libre/qtcreator/qtcreatorbug-19367b.patch b/libre/qtcreator/qtcreatorbug-19367b.patch
deleted file mode 100644
index 7603877cd..000000000
--- a/libre/qtcreator/qtcreatorbug-19367b.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 813c16854df6be7fd1f1a8013d0b180f6248e5ab Mon Sep 17 00:00:00 2001
-From: Jonathan Liu <net147@gmail.com>
-Date: Thu, 20 Sep 2018 13:48:58 +1000
-Subject: SshDeviceProcess: Don't emit readyRead signals if no data available
-
-Task-number: QTCREATORBUG-19367
-Change-Id: I477800b2e2060748c2b5f9fde3acc91d9f5ae176
-Reviewed-by: hjk <hjk@qt.io>
-Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
----
- src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp | 10 ++++++++--
- 1 file changed, 8 insertions(+), 2 deletions(-)
-
-diff --git a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
-index b34e0ce805..3bb813d55d 100644
---- a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
-+++ b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
-@@ -245,13 +245,19 @@ void SshDeviceProcess::handleProcessFinished(int exitStatus)
-
- void SshDeviceProcess::handleStdout()
- {
-- d->stdOut += d->process->readAllStandardOutput();
-+ QByteArray output = d->process->readAllStandardOutput();
-+ if (output.isEmpty())
-+ return;
-+ d->stdOut += output;
- emit readyReadStandardOutput();
- }
-
- void SshDeviceProcess::handleStderr()
- {
-- d->stdErr += d->process->readAllStandardError();
-+ QByteArray output = d->process->readAllStandardError();
-+ if (output.isEmpty())
-+ return;
-+ d->stdErr += output;
- emit readyReadStandardError();
- }
-
---
-cgit v1.2.1
-