From 2b480f60f90e33cfe51f070471931af1b3feb9af Mon Sep 17 00:00:00 2001 From: David Christenson Date: Wed, 28 Jan 2015 03:33:00 -0700 Subject: [PATCH] Include QFont headers for OS X Fix compilation on OS X >10.8 by including headers for QFont. --- src/application.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/application.cpp b/src/application.cpp index 5f75c3bff..b547efeba 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -33,6 +33,10 @@ #include #include +#if (!defined(DISABLE_GUI) && defined(Q_OS_MAC)) +#include +#endif + #include "application.h" #include "preferences.h"