summaryrefslogtreecommitdiff
path: root/examples/camera/camera.cpp
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2012-10-31 19:37:48 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-06 18:19:57 +0100
commit00d709216335b68b5eb81ae9bf726c82a079e12c (patch)
tree571dcc87ca419e092512c62c76864fceff49088a /examples/camera/camera.cpp
parent0affd9023ff1146c822cd188612c7727947ea618 (diff)
downloadqtmultimedia-00d709216335b68b5eb81ae9bf726c82a079e12c.tar.gz
Rename namespace QtMultimedia::MetaData -> QMediaMetaData
Main code, examples, tests and docs updated. Method: 1. Remove unused forward-declarations, "class QMediaMetaData" 2. Mass find+replace "QtMultimedia::MetaData" -> "QMediaMetaData" 3. Un-nest from the QtMultimedia namespace in qtmedianamespace.h For consistency (with minimal disruption), namespaces with a "Qt" prefix will be renamed. Also, Qt guidelines don't include nested namespaces (http://lists.qt-project.org/pipermail/development/2012-October/006756.html) Part of the Header Consistency Project (http://lists.qt-project.org/pipermail/development/2012-October/007570.html) Change-Id: I40e59c1cf58c1792725e735e9285c51bc5f226b1 Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'examples/camera/camera.cpp')
-rw-r--r--examples/camera/camera.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/camera/camera.cpp b/examples/camera/camera.cpp
index 99b01231f..e1031b108 100644
--- a/examples/camera/camera.cpp
+++ b/examples/camera/camera.cpp
@@ -124,7 +124,7 @@ void Camera::setCamera(const QByteArray &cameraDevice)
connect(mediaRecorder, SIGNAL(durationChanged(qint64)), this, SLOT(updateRecordTime()));
connect(mediaRecorder, SIGNAL(error(QMediaRecorder::Error)), this, SLOT(displayRecorderError()));
- mediaRecorder->setMetaData(QtMultimedia::MetaData::Title, QVariant(QLatin1String("Test Title")));
+ mediaRecorder->setMetaData(QMediaMetaData::Title, QVariant(QLatin1String("Test Title")));
connect(ui->exposureCompensation, SIGNAL(valueChanged(int)), SLOT(setExposureCompensation(int)));