From eaebf218ebc2a99963ed56d8c8aa23910884a95c Mon Sep 17 00:00:00 2001 From: Konstantin Isakov Date: Mon, 29 Mar 2010 17:13:29 +0400 Subject: [PATCH] Use "phonon/mediaobject.h"-style includes for Phonon, as the older ones don't work under Debian sid anymore. If you know how to make this actually work everywhere, please send in a patch. --- src/articleview.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/articleview.cc b/src/articleview.cc index 3c0de6e5..0eb40b63 100644 --- a/src/articleview.cc +++ b/src/articleview.cc @@ -15,8 +15,16 @@ #include "wstring_qt.hh" #include + +// Phonon headers are a mess. How to include them properly? Send patches if you +// know. +#ifdef __WIN32 #include #include +#else +#include +#include +#endif using std::map; using std::list;