From 3f1519d40a118c8519c910e4d138829d36e16690 Mon Sep 17 00:00:00 2001
From: Bjoern Breitmeyer <bjoern.breitmeyer@kdab.com>
Date: Mon, 13 May 2013 18:10:43 +0200
Subject: [PATCH] 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>
---
 src/corelib/io/qprocess_wince.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/corelib/io/qprocess_wince.cpp b/src/corelib/io/qprocess_wince.cpp
index 712748aa59e..ad9a3281339 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;
-- 
GitLab