From e15eab9b6a6aafccb832adf175aeb6d559075185 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 18 Jan 2010 22:10:38 +0000 Subject: [PATCH] - Fix compilation with Qt4.4 --- Changelog | 3 +++ src/rss_imp.h | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/Changelog b/Changelog index 9e010e195..78efad257 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Unreleased - Christophe Dumez - v2.1.1 + - BUGFIX: Fix compilation with Qt4.4 + * Mon Jan 18 2010 - Christophe Dumez - v2.1.0 - FEATURE: Graphical User Interface can be disabled at compilation time (headless running) - FEATURE: Torrents can be labeled/categorized diff --git a/src/rss_imp.h b/src/rss_imp.h index 3873d11a3..4524ea883 100644 --- a/src/rss_imp.h +++ b/src/rss_imp.h @@ -86,4 +86,9 @@ public: }; +#ifndef QT_4_5 +#undef QHash +#undef toHash +#endif + #endif