]> git.sur5r.net Git - minitube/commitdiff
Fix for Phonon headers
authorFlavio Tordini <flavio.tordini@gmail.com>
Thu, 25 Jun 2009 14:37:56 +0000 (16:37 +0200)
committerFlavio Tordini <flavio.tordini@gmail.com>
Thu, 25 Jun 2009 14:37:56 +0000 (16:37 +0200)
minitube.pro
src/MainWindow.h
src/MediaView.h

index c6a09a3263cc672ef5b796fcec33cb55061e65b7..65fc040a2a92624fa2ff6b2f854e21a0a42afce7 100755 (executable)
@@ -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
 
index da461887416becbc2b5fb80f9f26fedbda804608..cbd6de8f7abe234c0aea2f7b133f393c9b56a8f7 100755 (executable)
@@ -4,7 +4,10 @@
 #include <QtGui>
 #include "faderwidget/FaderWidget.h"
 #include "searchlineedit.h"
-#include <phonon>
+#include <phonon/audiooutput.h>
+#include <phonon/volumeslider.h>
+#include <phonon/mediaobject.h>
+#include <phonon/seekslider.h>
 #include "View.h"
 #include "SearchView.h"
 #include "MediaView.h"
index 3ff5e30022e88c46b4bf2f1183526088dc9db97b..37433ca019ac70e2c1fb1d8d561623af10bd1c60 100644 (file)
@@ -3,7 +3,8 @@
 
 #include <QtGui>
 #include <QtNetwork>
-#include <phonon>
+#include <phonon/mediaobject.h>
+#include <phonon/videowidget.h>
 #include "View.h"
 #include "ListModel.h"
 #include "thaction.h"