summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBjoern Breitmeyer <bjoern.breitmeyer@kdab.com>2013-05-13 18:10:43 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-14 15:18:50 +0200
commit3f1519d40a118c8519c910e4d138829d36e16690 (patch)
tree9681790eebf10a6d90c9f200827ff9f00a8de738 /src
parent8be5103d29f9c91dc54e3f4b16605c8a49928a20 (diff)
Fixed WINCE linking error in QProcess
The error was introduced with 28ee554b37be39c03c231e7b857f71163dc6ea73 Change-Id: If3e51227af3880496ef2da3a18835b36d65bad78 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/io/qprocess_wince.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/corelib/io/qprocess_wince.cpp b/src/corelib/io/qprocess_wince.cpp
index 712748aa59..ad9a328133 100644
--- a/src/corelib/io/qprocess_wince.cpp
+++ b/src/corelib/io/qprocess_wince.cpp
@@ -233,6 +233,11 @@ bool QProcessPrivate::waitForStarted(int)
return false;
}
+bool QProcessPrivate::drainOutputPipes()
+{
+ return true;
+}
+
bool QProcessPrivate::waitForReadyRead(int msecs)
{
return false;