summaryrefslogtreecommitdiffstats
path: root/doc/src/examples/camera.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/examples/camera.qdoc')
-rw-r--r--doc/src/examples/camera.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/examples/camera.qdoc b/doc/src/examples/camera.qdoc
index deb13826a..4bc172098 100644
--- a/doc/src/examples/camera.qdoc
+++ b/doc/src/examples/camera.qdoc
@@ -53,9 +53,9 @@ interface object.
The Camera constructor does some basic initialization. The camera object is
set to '0', the user interface is initialized and UI signal are connected to
slots that react to the triggering event. However, most of the work is done when
-the \e {setCamera()} function is called, passing in a \l {QByteArray}.
+the \e{setCamera()} function is called, passing in a \l {QByteArray}.
-\e {setCamera()} sets up various connections between the user interface and the functionality
+\e{setCamera()} sets up various connections between the user interface and the functionality
of the Camera class using signals and slots. It also instantiates and initializes the \l {QCamera},
\l {QCameraImageCapture} and \l {QMediaRecorder} objects mentioned above. The still
and video recording visual tabs are enabled and finally the
@@ -65,10 +65,10 @@ Now that the camera is ready for user commands it waits for a suitable event.
Such an event will be the key press of either the \l {Qt::Key_CameraFocus} or
\l {Qt::Key_Camera} buttons on the application window. Camera focus will
simply display the viewfinder and lock the camera settings. Key_Camera will
-either call \e {takeImage()} if the \l {QCamera::captureMode()}{captureMode()}
+either call \e{takeImage()} if the \l {QCamera::captureMode()}{captureMode()}
is QCamera::CaptureStillImage, or if the capture mode is for video then one
of two actions will occur. If the recording state shows that we are currently
-recording then the \e {stop()} function is called resulting in a call to
+recording then the \e{stop()} function is called resulting in a call to
\l {QCamera::stop()}, whereas if we are not recording then a video recording
is started with a call to \l {QMediaRecorder::record()}.