summaryrefslogtreecommitdiffstats
path: root/src/multimedia/qml/multimediadeclarative.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/multimedia/qml/multimediadeclarative.cpp')
-rw-r--r--src/multimedia/qml/multimediadeclarative.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/multimedia/qml/multimediadeclarative.cpp b/src/multimedia/qml/multimediadeclarative.cpp
index 086250a..7f5298f 100644
--- a/src/multimedia/qml/multimediadeclarative.cpp
+++ b/src/multimedia/qml/multimediadeclarative.cpp
@@ -55,14 +55,13 @@ namespace QtMultimedia
\internal
*/
-void qRegisterDeclarativeElements(QDeclarativeEngine *engine, const char *uri)
+void qRegisterDeclarativeElements(const char *uri)
{
- Q_UNUSED(engine)
Q_ASSERT(QLatin1String(uri) == QLatin1String("Qt.multimedia"));
- qmlRegisterType<QSoundEffect>("Qt.multimedia", 4, 7, "SoundEffect");
- qmlRegisterType<QDeclarativeAudio>("Qt.multimedia", 4, 7, "Audio");
- qmlRegisterType<QDeclarativeVideo>("Qt.multimedia", 4, 7, "Video");
+ qmlRegisterType<QSoundEffect>(uri, 4, 7, "SoundEffect");
+ qmlRegisterType<QDeclarativeAudio>(uri, 4, 7, "Audio");
+ qmlRegisterType<QDeclarativeVideo>(uri, 4, 7, "Video");
}
}