From: Flavio Tordini Date: Thu, 25 Jun 2009 14:37:56 +0000 (+0200) Subject: Fix for Phonon headers X-Git-Tag: 0.4~31 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a795677b2de5a0385d4b990154616e35e7409f48;p=minitube Fix for Phonon headers --- diff --git a/minitube.pro b/minitube.pro index c6a09a3..65fc040 100755 --- a/minitube.pro +++ b/minitube.pro @@ -1,5 +1,6 @@ -# If Phonon cannot be found, uncomment the following (and set the correct path) -# INCLUDEPATH += /usr/include/phonon +# On some distro, Phonon headers cannot be found +INCLUDEPATH += /usr/include/phonon + CONFIG += release TEMPLATE = app diff --git a/src/MainWindow.h b/src/MainWindow.h index da46188..cbd6de8 100755 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -4,7 +4,10 @@ #include #include "faderwidget/FaderWidget.h" #include "searchlineedit.h" -#include +#include +#include +#include +#include #include "View.h" #include "SearchView.h" #include "MediaView.h" diff --git a/src/MediaView.h b/src/MediaView.h index 3ff5e30..37433ca 100644 --- a/src/MediaView.h +++ b/src/MediaView.h @@ -3,7 +3,8 @@ #include #include -#include +#include +#include #include "View.h" #include "ListModel.h" #include "thaction.h"