summaryrefslogtreecommitdiffstats
path: root/src/multimedia/qml/qsoundeffect_qsound_p.cpp
diff options
context:
space:
mode:
authorKurt Korbatits <kurt.korbatits@nokia.com>2010-03-02 01:12:34 (GMT)
committerKurt Korbatits <kurt.korbatits@nokia.com>2010-03-03 01:56:15 (GMT)
commitd2f456c8e94b6c7752818a9e3c819784e18237f0 (patch)
tree7dfba3105671500afaf20e2da6f3dbcf557bb1fd /src/multimedia/qml/qsoundeffect_qsound_p.cpp
parent39a2b4cb71423db004ea5e6380c9c73bb35d5a2d (diff)
downloadQt-d2f456c8e94b6c7752818a9e3c819784e18237f0.zip
Qt-d2f456c8e94b6c7752818a9e3c819784e18237f0.tar.gz
Qt-d2f456c8e94b6c7752818a9e3c819784e18237f0.tar.bz2
Fixed compiler warnings when compiling multimedia module.
Reviewed-by:Andrew den Exter
Diffstat (limited to 'src/multimedia/qml/qsoundeffect_qsound_p.cpp')
-rw-r--r--src/multimedia/qml/qsoundeffect_qsound_p.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/multimedia/qml/qsoundeffect_qsound_p.cpp b/src/multimedia/qml/qsoundeffect_qsound_p.cpp
index 0292d26..df160a9 100644
--- a/src/multimedia/qml/qsoundeffect_qsound_p.cpp
+++ b/src/multimedia/qml/qsoundeffect_qsound_p.cpp
@@ -157,7 +157,7 @@ void QSoundEffectPrivate::setMedia(const QMediaContent &media)
{
m_queued = false;
- if (media.isNull() || media.canonicalUrl().scheme() != "file") {
+ if (media.isNull() || media.canonicalUrl().scheme() != QLatin1String("file")) {
m_media = QMediaContent();
return;
}