summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/phonon/mmf/mediaobject.h
diff options
context:
space:
mode:
authorGareth Stockwell <ext-gareth.stockwell@nokia.com>2009-12-08 17:18:17 (GMT)
committerGareth Stockwell <ext-gareth.stockwell@nokia.com>2010-01-08 17:16:14 (GMT)
commitd44c661d75ff6edcabf70b188b18bc991611628b (patch)
treeaa9e8ec3d72dacaa54c9f15b3c4790a9eec9954d /src/3rdparty/phonon/mmf/mediaobject.h
parent7d3cdcb63c4030926ef5224d7e986de6d67da31b (diff)
downloadQt-d44c661d75ff6edcabf70b188b18bc991611628b.zip
Qt-d44c661d75ff6edcabf70b188b18bc991611628b.tar.gz
Qt-d44c661d75ff6edcabf70b188b18bc991611628b.tar.bz2
Corrected parameter name ordering in internal Phonon MMF function signatures
Some instances of the changeState signal declaration had the newState and oldState parameters in the wrong order. While this has no effect on the behaviour of the code, it can be confusing to developers reading it. Reviewed-by: trustme
Diffstat (limited to 'src/3rdparty/phonon/mmf/mediaobject.h')
-rw-r--r--src/3rdparty/phonon/mmf/mediaobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/phonon/mmf/mediaobject.h b/src/3rdparty/phonon/mmf/mediaobject.h
index 668b953..7d330e7 100644
--- a/src/3rdparty/phonon/mmf/mediaobject.h
+++ b/src/3rdparty/phonon/mmf/mediaobject.h
@@ -101,8 +101,8 @@ Q_SIGNALS:
// TODO: emit metaDataChanged from MediaObject
void metaDataChanged(const QMultiMap<QString, QString>& metaData);
void currentSourceChanged(const MediaSource& source);
- void stateChanged(Phonon::State oldState,
- Phonon::State newState);
+ void stateChanged(Phonon::State newState,
+ Phonon::State oldState);
void finished();
void tick(qint64 time);