From d89a9633a80670049c2430c81ad9ee829e1a620a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20K=C3=A4ning?= Date: Thu, 22 Jan 2015 00:29:37 +0100 Subject: [PATCH] fix build on OSX (Q_WS_MAC -> Q_OS_MAC) --- src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.cpp b/src/Application.cpp index 3544036c..3ccba815 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -49,7 +49,7 @@ void Application::init() { _backgroundInstance = 0; -#if defined(Q_WS_MAC) +#if defined(Q_OS_MAC) // this ensures that Ctrl and Meta are not swapped, so CTRL-C and friends // will work correctly in the terminal setAttribute(Qt::AA_MacDontSwapCtrlAndMeta);