summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qprocess_unix.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-10-02 09:35:24 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-10-02 23:59:03 +0200
commitb73d5a0511bed8c3ccc504e74c52a61d4d3749b4 (patch)
tree9942c07e311f653792b660766bbc605e2643b546 /src/corelib/io/qprocess_unix.cpp
parent013b6cf0f15b2e770a0e51be745e4484e89ea926 (diff)
Remove typedef Q_PID
It is not used in public API any more since 0f8848b7e25e4d8fb9265ff6e0aa31946addd741. Replace by an internal Windows-specific Q_PROCESS_INFORMATION typedef. Change-Id: Ia6dcc83ca667c40ac5d678c00d143c09d650e42a Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/io/qprocess_unix.cpp')
-rw-r--r--src/corelib/io/qprocess_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/io/qprocess_unix.cpp b/src/corelib/io/qprocess_unix.cpp
index 5fce848c2c..2c2f376028 100644
--- a/src/corelib/io/qprocess_unix.cpp
+++ b/src/corelib/io/qprocess_unix.cpp
@@ -503,7 +503,7 @@ void QProcessPrivate::startProcess()
::_exit(-1);
}
- pid = Q_PID(childPid);
+ pid = qint64(childPid);
// parent
// close the ends we don't use and make all pipes non-blocking