summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/video
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-01-27 12:25:02 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-29 01:28:50 +0100
commit28ee5b12ff800ff25dd646730011f2d8d4ad9699 (patch)
tree978cd519ccf38fe74301c69529a29b7200b97cf8 /examples/multimedia/video
parent52ad3219f073b87cfc1c57ced77266e3e7fad7ee (diff)
Doc: Fix module name format
Follow the conventions at http://qt-project.org/wiki/Spelling_Module_Names_in_Qt_Documentation QtMultimedia -> Qt Multimedia (Also, QtMultimediaKit has been merged into Qt Multimedia in Qt 5) Change-Id: I3c23435d5eceb946ea320756b835da937726db24 Reviewed-by: Laszlo Papp <lpapp@kde.org> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'examples/multimedia/video')
-rw-r--r--examples/multimedia/video/qmlvideo/qml/qmlvideo/CameraDummy.qml4
-rw-r--r--examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoDummy.qml4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/multimedia/video/qmlvideo/qml/qmlvideo/CameraDummy.qml b/examples/multimedia/video/qmlvideo/qml/qmlvideo/CameraDummy.qml
index f23fd01e5..baf69b706 100644
--- a/examples/multimedia/video/qmlvideo/qml/qmlvideo/CameraDummy.qml
+++ b/examples/multimedia/video/qmlvideo/qml/qmlvideo/CameraDummy.qml
@@ -41,7 +41,7 @@
import QtQuick 2.0
-// Item which is loaded by CameraItem if QtMultimediaKit is not available
+// Item which is loaded by CameraItem if Qt Multimedia is not available
Rectangle {
id: root
color: "grey"
@@ -56,7 +56,7 @@ Rectangle {
anchors.margins: 10
color: "white"
horizontalAlignment: Text.AlignHCenter
- text: "Failed to create Camera item\n\nCheck that QtMultimediaKit is installed"
+ text: "Failed to create Camera item\n\nCheck that Qt Multimedia is installed"
verticalAlignment: Text.AlignVCenter
wrapMode: Text.Wrap
}
diff --git a/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoDummy.qml b/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoDummy.qml
index 0c7619119..cb71b9368 100644
--- a/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoDummy.qml
+++ b/examples/multimedia/video/qmlvideo/qml/qmlvideo/VideoDummy.qml
@@ -41,7 +41,7 @@
import QtQuick 2.0
-// Item which is loaded by VideoItem if QtMultimediaKit is not available
+// Item which is loaded by VideoItem if Qt Multimedia is not available
Rectangle {
id: root
color: "grey"
@@ -61,7 +61,7 @@ Rectangle {
anchors.margins: 10
color: "white"
horizontalAlignment: Text.AlignHCenter
- text: "Failed to create Video item\n\nCheck that QtMultimediaKit is installed"
+ text: "Failed to create Video item\n\nCheck that Qt Multimedia is installed"
verticalAlignment: Text.AlignVCenter
wrapMode: Text.Wrap
}