summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJustin McPherson <justin.mcpherson@nokia.com>2010-02-19 07:11:35 (GMT)
committerJustin McPherson <justin.mcpherson@nokia.com>2010-02-19 07:11:35 (GMT)
commitf95a3014171361672c3307b8dd080e5369d6e017 (patch)
treec8563e0cdca4405b48dc4924b086c6a276ffde36 /src
parent723d412d2b3fcb2f64594ff75ad94d469285aeb1 (diff)
downloadQt-f95a3014171361672c3307b8dd080e5369d6e017.zip
Qt-f95a3014171361672c3307b8dd080e5369d6e017.tar.gz
Qt-f95a3014171361672c3307b8dd080e5369d6e017.tar.bz2
Lowercase Q to uppercase in QML elment URI.
Diffstat (limited to 'src')
-rw-r--r--src/plugins/qmlmodules/multimedia/multimedia.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/qmlmodules/multimedia/multimedia.cpp b/src/plugins/qmlmodules/multimedia/multimedia.cpp
index 9710486..381fb56 100644
--- a/src/plugins/qmlmodules/multimedia/multimedia.cpp
+++ b/src/plugins/qmlmodules/multimedia/multimedia.cpp
@@ -53,17 +53,17 @@ class QMultimediaQmlModule : public QmlModulePlugin
public:
QStringList keys() const
{
- return QStringList() << QLatin1String("qt.multimedia");
+ return QStringList() << QLatin1String("Qt.multimedia");
}
void defineModule(const QString& uri)
{
Q_UNUSED(uri)
- Q_ASSERT(uri == QLatin1String("qt.multimedia"));
+ Q_ASSERT(uri == QLatin1String("Qt.multimedia"));
- qmlRegisterType<QSoundEffect>("qt.multimedia", 4, 7, "SoundEffect", "SoundEffect");
- qmlRegisterType<QmlAudio>("qt.multimedia", 4, 7, "Audio", "Audio");
- qmlRegisterType<QmlGraphicsVideo>("qt.multimedia", 4, 7, "Video", "Video");
+ qmlRegisterType<QSoundEffect>("Qt.multimedia", 4, 7, "SoundEffect", "SoundEffect");
+ qmlRegisterType<QmlAudio>("Qt.multimedia", 4, 7, "Audio", "Audio");
+ qmlRegisterType<QmlGraphicsVideo>("Qt.multimedia", 4, 7, "Video", "Video");
}
};