diff options
author | Gareth Stockwell <gareth.stockwell@sosco.com> | 2009-09-10 11:57:07 (GMT) |
---|---|---|
committer | Gareth Stockwell <gareth.stockwell@sosco.com> | 2009-09-10 11:57:07 (GMT) |
commit | f6495ee7a1427e377559e25616a35ba11f34e9c1 (patch) | |
tree | 808056d2630c8fc4ca12d5aaead5d185780552b6 /src/3rdparty/phonon/mmf/mmf_medianode.cpp | |
parent | 264a6a562f7870a9fd1af065aef4e979808bd1d2 (diff) | |
download | Qt-f6495ee7a1427e377559e25616a35ba11f34e9c1.zip Qt-f6495ee7a1427e377559e25616a35ba11f34e9c1.tar.gz Qt-f6495ee7a1427e377559e25616a35ba11f34e9c1.tar.bz2 |
Fixed problems with compiling for ARMV5
- Forward declaration of QScopedPointer containee type was causing an error
- Audio effect libraries were declared in the .pro file as e.g. -lBassBoostEffect.lib, causing toolchain to try to link statically
- Added several missing MMF:: namespace qualifiers
Diffstat (limited to 'src/3rdparty/phonon/mmf/mmf_medianode.cpp')
-rw-r--r-- | src/3rdparty/phonon/mmf/mmf_medianode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/phonon/mmf/mmf_medianode.cpp b/src/3rdparty/phonon/mmf/mmf_medianode.cpp index 54c51a0..a9eee58 100644 --- a/src/3rdparty/phonon/mmf/mmf_medianode.cpp +++ b/src/3rdparty/phonon/mmf/mmf_medianode.cpp @@ -63,14 +63,14 @@ MMF::MediaNode *MMF::MediaNode::target() const return m_target; } -bool MediaNode::applyNodesOnMediaObject(MediaNode *) +bool MMF::MediaNode::applyNodesOnMediaObject(MediaNode *) { // Algorithmically, this can be expressed in a more efficient way by // exercising available assumptions, but it complicates code for input // data(length of the graph) which typically is very small. // First, we go to the very beginning of the graph. - MediaNode *current = this; + MMF::MediaNode *current = this; do { MediaNode *const candidate = current->source(); if (candidate) |