From ed850a793433d060e62854b3cefea6bd98f08dfe Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Wed, 12 Jul 2017 10:58:53 +0200 Subject: [PATCH] Fix build on macOS with Qt 5.6 Change-Id: I6d189aa17c43d740115cbaa5f410059f364b82d5 Reviewed-by: Jake Petroules --- src/libs/utils/processhandle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/utils/processhandle.cpp b/src/libs/utils/processhandle.cpp index 51e231b957d..d95ecd1a866 100644 --- a/src/libs/utils/processhandle.cpp +++ b/src/libs/utils/processhandle.cpp @@ -68,7 +68,7 @@ bool ProcessHandle::equals(const ProcessHandle &rhs) const return m_pid == rhs.m_pid; } -#ifndef Q_OS_MACOS +#ifndef Q_OS_OSX bool ProcessHandle::activate() { return false;