summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qprocess_wince.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-04-09 11:24:15 +0200
committerJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-04-13 14:51:57 +0000
commit96cc8eec9b32f4e80c2d748687c485bc79133d39 (patch)
tree5902bb2cc6aa7e70070c46282169be3ae57a239f /src/corelib/io/qprocess_wince.cpp
parent95b481ea6dfa901c23b012085527769f9b5823c9 (diff)
remove the "wonderful Windows notifier" from QProcess
Remove the 100 ms timer that was used to nudge QProcess to write data to the child's stdin. Instead, react on the canWrite() signal of QWindowsPipeWriter. QProcess::writeData needs to call _q_canWrite via the event loop to start the write operation. The socket notifier code was never in use on Windows. Task-number: QTBUG-45457 Change-Id: I99c956ba5f2169f80068eee206543ceb9788b2e0 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'src/corelib/io/qprocess_wince.cpp')
-rw-r--r--src/corelib/io/qprocess_wince.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/corelib/io/qprocess_wince.cpp b/src/corelib/io/qprocess_wince.cpp
index bf19c81f25..53767758c2 100644
--- a/src/corelib/io/qprocess_wince.cpp
+++ b/src/corelib/io/qprocess_wince.cpp
@@ -288,10 +288,6 @@ bool QProcessPrivate::waitForWrite(int msecs)
return false;
}
-void QProcessPrivate::_q_notified()
-{
-}
-
bool QProcessPrivate::startDetached(const QString &program, const QStringList &arguments, const QString &workingDir, qint64 *pid)
{
Q_UNUSED(workingDir);