diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-06-12 13:06:29 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-06-23 09:58:15 (GMT) |
commit | 71be46c61c582d2f4635a1e420e44d57ddb5857a (patch) | |
tree | 7affbc1ab7dc3e1160c2013663907c119625cba7 /src/3rdparty/webkit/WebCore | |
parent | 4b43263b870c17fd813d1d34f97146f4c725083e (diff) | |
download | Qt-71be46c61c582d2f4635a1e420e44d57ddb5857a.zip Qt-71be46c61c582d2f4635a1e420e44d57ddb5857a.tar.gz Qt-71be46c61c582d2f4635a1e420e44d57ddb5857a.tar.bz2 |
Fix compilation after the last change.
The #include <phonon> header no longer exists. And the <Phonon> or
<Phonon/Phonon> headers have never existed (neither for us nor for the
Phonon sources). You have to select each and every header that you do
want now.
Reviewed-By: Marius Storm-Olsen
Diffstat (limited to 'src/3rdparty/webkit/WebCore')
-rw-r--r-- | src/3rdparty/webkit/WebCore/platform/graphics/qt/MediaPlayerPrivatePhonon.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/WebCore/platform/graphics/qt/MediaPlayerPrivatePhonon.cpp b/src/3rdparty/webkit/WebCore/platform/graphics/qt/MediaPlayerPrivatePhonon.cpp index b1a48fb..2e01100 100644 --- a/src/3rdparty/webkit/WebCore/platform/graphics/qt/MediaPlayerPrivatePhonon.cpp +++ b/src/3rdparty/webkit/WebCore/platform/graphics/qt/MediaPlayerPrivatePhonon.cpp @@ -35,7 +35,10 @@ #include <QMetaEnum> #include <QUrl> #include <QEvent> -#include <phonon> + +#include <Phonon/AudioOutput> +#include <Phonon/MediaObject> +#include <Phonon/VideoWidget> using namespace Phonon; |