From 5a2e92ad79879811848c3ee9ce2c8317538d41fd Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 30 Sep 2009 18:44:58 +0000 Subject: [PATCH] Fix compilation on Mac OS --- Changelog | 1 + src/misc.h | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 6ecd894d0..a309a6152 100644 --- a/Changelog +++ b/Changelog @@ -3,6 +3,7 @@ - BUGFIX: Fix a race condition in folder scanning and torrent downloader - BUGFIX: Hide download url column in search results - BUGFIX: Fix a crash when scanned directory does not exist + - BUGFIX: Fix compilation on Mac OS * Sun Sep 20 2009 - Christophe Dumez - v1.5.2 - BUGFIX: Some torrents were pausing for no reason diff --git a/src/misc.h b/src/misc.h index e26ce6750..c951fd329 100644 --- a/src/misc.h +++ b/src/misc.h @@ -43,9 +43,14 @@ #include #ifndef Q_WS_WIN -#include +#ifdef Q_WS_MAC + #include + #include #else -#include + #include +#endif +#else + #include #endif #include