summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLorn Potter <[email protected]>2025-06-20 05:28:58 +1000
committerLorn Potter <[email protected]>2025-07-01 08:46:39 +1000
commita869bf571625f05672ce713312cab5beaf3aeadf (patch)
tree097b07b194b0b40c6fa76dd43e22e553c63173b6 /src
parent3042c8a2824c287651adca27079b4292587beb0a (diff)
wasm: fix spelling errorHEADdev
It is being used as a contraction, but it should be the possesive form. Pick-to: 6.10 6.9 Change-Id: Ia7764e3328837292d6c61dac66300fcfd08d63db Reviewed-by: Morten Johan Sørvig <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/multimedia/audio/qaudioinput.cpp2
-rw-r--r--src/multimedia/audio/qaudiooutput.cpp2
-rw-r--r--src/multimedia/camera/qcamera.cpp2
-rw-r--r--src/multimedia/doc/src/platform-notes-wasm.qdoc2
-rw-r--r--src/multimedia/qmediadevices.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/multimedia/audio/qaudioinput.cpp b/src/multimedia/audio/qaudioinput.cpp
index 4435fe266..ba79bf938 100644
--- a/src/multimedia/audio/qaudioinput.cpp
+++ b/src/multimedia/audio/qaudioinput.cpp
@@ -50,7 +50,7 @@
QMediaCaptureSession. It enables the selection of the physical input device
to be used, muting the channel, and changing the channel's volume.
- \note On WebAssembly platform, due to it's asynchronous nature,
+ \note On WebAssembly platform, due to its asynchronous nature,
QMediaDevices::audioInputsChanged() signal is emitted when the list of
audio inputs is ready. User permissions are required. Works only on secure https contexts.
*/
diff --git a/src/multimedia/audio/qaudiooutput.cpp b/src/multimedia/audio/qaudiooutput.cpp
index 31f3791fd..96c4f71f1 100644
--- a/src/multimedia/audio/qaudiooutput.cpp
+++ b/src/multimedia/audio/qaudiooutput.cpp
@@ -51,7 +51,7 @@
physical output device to be used, muting the channel, and changing the
channel's volume.
- \note On WebAssembly platform, due to it's asynchronous nature,
+ \note On WebAssembly platform, due to its asynchronous nature,
QMediaDevices::audioOutputsChanged() signal is emitted when the list of
audio outputs is ready. User permissions are required. Works only on secure https contexts.
diff --git a/src/multimedia/camera/qcamera.cpp b/src/multimedia/camera/qcamera.cpp
index 237d88e34..32299c22d 100644
--- a/src/multimedia/camera/qcamera.cpp
+++ b/src/multimedia/camera/qcamera.cpp
@@ -64,7 +64,7 @@ QT_BEGIN_NAMESPACE
See the \l{Camera Overview}{camera overview} for more information.
- \note On WebAssembly platform, due to it's asynchronous nature,
+ \note On WebAssembly platform, due to its asynchronous nature,
QMediaDevices::videoInputsChanged() signal is emitted when the list of
video inputs is ready. User permissions are required. Works only on secure https contexts.
*/
diff --git a/src/multimedia/doc/src/platform-notes-wasm.qdoc b/src/multimedia/doc/src/platform-notes-wasm.qdoc
index 0739d64e0..dc0ebd7ee 100644
--- a/src/multimedia/doc/src/platform-notes-wasm.qdoc
+++ b/src/multimedia/doc/src/platform-notes-wasm.qdoc
@@ -11,7 +11,7 @@ This page covers the availability of Qt Multimedia features on WebAssembly.
\section1 Limitations
\list
-\li Due to it's asynchronous nature, some features such as getting the list of
+\li Due to its asynchronous nature, some features such as getting the list of
QMediaDevices, will not be readily available and may take some time to request permissions and
gather the list of devices. The audioInputsChanged, audioOutputsChanged and
videoInputChanged signals from QMediaDevices class will be emitted when they are available.
diff --git a/src/multimedia/qmediadevices.cpp b/src/multimedia/qmediadevices.cpp
index 933d16b26..16a80d7de 100644
--- a/src/multimedia/qmediadevices.cpp
+++ b/src/multimedia/qmediadevices.cpp
@@ -59,7 +59,7 @@ QT_BEGIN_NAMESPACE
QMediaDevices is a singleton object and all getters are thread-safe.
- \note On WebAssembly platform, due to it's asynchronous nature,
+ \note On WebAssembly platform, due to its asynchronous nature,
the lists of devices will only be available after audioInputsChanged,
audioOutputsChanded, or videoInputsChanged notifications.