diff options
author | axis <qt-info@nokia.com> | 2011-02-01 10:15:55 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2011-02-04 13:40:30 (GMT) |
commit | 1c15dab336bd1806ff0762a0f4c92c0d83da6d8a (patch) | |
tree | efd60c7b769de7945a0d103997cbfb5ab59f3073 | |
parent | c6c647c22efaa9d101324920da81b891becb1cf1 (diff) | |
download | Qt-1c15dab336bd1806ff0762a0f4c92c0d83da6d8a.zip Qt-1c15dab336bd1806ff0762a0f4c92c0d83da6d8a.tar.gz Qt-1c15dab336bd1806ff0762a0f4c92c0d83da6d8a.tar.bz2 |
Fixed "not a valid preprocessing token" on GCCE.
It seems to be fixed upstream already.
RevBy: Gareth Stockwell
-rw-r--r-- | src/3rdparty/phonon/mmf/abstractaudioeffect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/phonon/mmf/abstractaudioeffect.h b/src/3rdparty/phonon/mmf/abstractaudioeffect.h index 70adcf6..517a334 100644 --- a/src/3rdparty/phonon/mmf/abstractaudioeffect.h +++ b/src/3rdparty/phonon/mmf/abstractaudioeffect.h @@ -124,7 +124,7 @@ private: #define PHONON_MMF_DEFINE_EFFECT_FUNCTIONS(Effect) \ \ -void Effect##::createEffect(AudioPlayer::NativePlayer *player) \ +void Effect::createEffect(AudioPlayer::NativePlayer *player) \ { \ C##Effect *ptr = 0; \ QT_TRAP_THROWING(ptr = C##Effect::NewL(*player)); \ |