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