Utils: Fix Qt6 build

Amends 08040e4e94.

Change-Id: I8e34dc73b7449b20c7c8ea140010a4bd3b31daff
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2021-06-03 08:33:21 +02:00
parent f4a529ea95
commit 366936e331

View File

@@ -98,7 +98,7 @@ public:
ProcessHelper() ProcessHelper()
{ {
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) && defined(Q_OS_UNIX) #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) && defined(Q_OS_UNIX)
setChildProcessModifier([this] { d->setupChildProcess_impl(); }); setChildProcessModifier([this] { setupChildProcess_impl(); });
#endif #endif
} }