summaryrefslogtreecommitdiffstats
path: root/src/imports/multimedia/qdeclarativecameracapture.cpp
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2013-10-01 15:45:57 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-02 12:56:28 +0200
commit43be5d9763eea0b7a71c627f05ffb5de0b97249f (patch)
treebef5b226d73887b5909ea4dbd622020c5fdde436 /src/imports/multimedia/qdeclarativecameracapture.cpp
parent40908fdb77adcc59e8a60e3afd25ed13b451a5b3 (diff)
Doc: Removing version number from the QDoc comments.
The version is not needed anymore and QDoc handles them as a different module, causing errors. Task-number: QTBUG-32172 Change-Id: I55054a6c7bce9e001ef03cce944b03375c851d15 Reviewed-by: Martin Smith <martin.smith@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/imports/multimedia/qdeclarativecameracapture.cpp')
-rw-r--r--src/imports/multimedia/qdeclarativecameracapture.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/imports/multimedia/qdeclarativecameracapture.cpp b/src/imports/multimedia/qdeclarativecameracapture.cpp
index a624ca701..b93ab456e 100644
--- a/src/imports/multimedia/qdeclarativecameracapture.cpp
+++ b/src/imports/multimedia/qdeclarativecameracapture.cpp
@@ -137,7 +137,7 @@ QDeclarativeCameraCapture::~QDeclarativeCameraCapture()
*/
/*!
- \qmlproperty bool QtMultimedia5::CameraCapture::ready
+ \qmlproperty bool QtMultimedia::CameraCapture::ready
This property holds a bool value indicating whether the camera
is ready to capture photos or not.
@@ -154,7 +154,7 @@ bool QDeclarativeCameraCapture::isReadyForCapture() const
}
/*!
- \qmlmethod QtMultimedia5::CameraCapture::capture()
+ \qmlmethod QtMultimedia::CameraCapture::capture()
Start image capture. The \l onImageCaptured() and \l onImageSaved() signals will
be emitted when the capture is complete.
@@ -177,7 +177,7 @@ int QDeclarativeCameraCapture::capture()
}
/*!
- \qmlmethod QtMultimedia5::CameraCapture::captureToLocation(location)
+ \qmlmethod QtMultimedia::CameraCapture::captureToLocation(location)
Start image capture to specified \a location. The \l onImageCaptured() and \l onImageSaved() signals will
be emitted when the capture is complete.
@@ -196,7 +196,7 @@ int QDeclarativeCameraCapture::captureToLocation(const QString &location)
}
/*!
- \qmlmethod QtMultimedia5::CameraCapture::cancelCapture()
+ \qmlmethod QtMultimedia::CameraCapture::cancelCapture()
Cancel pending image capture requests.
*/
@@ -211,7 +211,7 @@ void QDeclarativeCameraCapture::cancelCapture()
This property holds the location of the last captured image.
*/
/*!
- \qmlproperty string QtMultimedia5::CameraCapture::capturedImagePath
+ \qmlproperty string QtMultimedia::CameraCapture::capturedImagePath
This property holds the location of the last captured image.
*/
@@ -254,7 +254,7 @@ void QDeclarativeCameraCapture::_q_captureFailed(int id, QCameraImageCapture::Er
*/
/*!
- \qmlproperty size QtMultimedia5::CameraCapture::resolution
+ \qmlproperty size QtMultimedia::CameraCapture::resolution
This property holds the resolution/size of the image to be captured.
If empty, the system chooses the appropriate resolution.
@@ -285,7 +285,7 @@ QCameraImageCapture::Error QDeclarativeCameraCapture::error() const
*/
/*!
- \qmlproperty string QtMultimedia5::CameraCapture::errorString
+ \qmlproperty string QtMultimedia::CameraCapture::errorString
This property holds the error message related to the last capture.
*/
@@ -295,7 +295,7 @@ QString QDeclarativeCameraCapture::errorString() const
}
/*!
- \qmlmethod QtMultimedia5::CameraCapture::setMetadata(key, value)
+ \qmlmethod QtMultimedia::CameraCapture::setMetadata(key, value)
Sets a particular metadata \a key to \a value for the subsequent image captures.
@@ -309,14 +309,14 @@ void QDeclarativeCameraCapture::setMetadata(const QString &key, const QVariant &
}
/*!
- \qmlsignal QtMultimedia5::CameraCapture::onCaptureFailed(requestId, message)
+ \qmlsignal QtMultimedia::CameraCapture::onCaptureFailed(requestId, message)
This handler is called when an error occurs during capture with \a requestId.
A descriptive message is available in \a message.
*/
/*!
- \qmlsignal QtMultimedia5::CameraCapture::onImageCaptured(requestId, preview)
+ \qmlsignal QtMultimedia::CameraCapture::onImageCaptured(requestId, preview)
This handler is called when an image with \a requestId has been captured
but not yet saved to the filesystem. The \a preview
@@ -326,7 +326,7 @@ void QDeclarativeCameraCapture::setMetadata(const QString &key, const QVariant &
*/
/*!
- \qmlsignal QtMultimedia5::CameraCapture::onImageSaved(requestId, path)
+ \qmlsignal QtMultimedia::CameraCapture::onImageSaved(requestId, path)
This handler is called after the image with \a requestId has been written to the filesystem.
The \a path is a local file path, not a URL.
@@ -336,7 +336,7 @@ void QDeclarativeCameraCapture::setMetadata(const QString &key, const QVariant &
/*!
- \qmlsignal QtMultimedia5::CameraCapture::onImageMetadataAvailable(requestId, key, value)
+ \qmlsignal QtMultimedia::CameraCapture::onImageMetadataAvailable(requestId, key, value)
This handler is called when the image with \a requestId has new metadata
available with the key \a key and value \a value.