Fix some typos
Change-Id: Iaf8f50741d3103480668b4a654a202d8a363bc45 Reviewed-by: Yoann Lopes <yoann.lopes@theqtcompany.com>
This commit is contained in:
committed by
Yoann Lopes
parent
13b24ab18b
commit
4ce9d89d7a
@@ -114,7 +114,7 @@ QUrl QDeclarativeAudioSample::source() const
|
||||
void QDeclarativeAudioSample::setSource(const QUrl& url)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("AudioSample: source not changable after initialization.");
|
||||
qWarning("AudioSample: source not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_url = url;
|
||||
@@ -170,7 +170,7 @@ void QDeclarativeAudioSample::load()
|
||||
void QDeclarativeAudioSample::setPreloaded(bool preloaded)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("AudioSample: preloaded not changable after initialization.");
|
||||
qWarning("AudioSample: preloaded not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_preloaded = preloaded;
|
||||
@@ -179,7 +179,7 @@ void QDeclarativeAudioSample::setPreloaded(bool preloaded)
|
||||
void QDeclarativeAudioSample::setStreaming(bool streaming)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("AudioSample: streaming not changable after initialization.");
|
||||
qWarning("AudioSample: streaming not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_streaming = streaming;
|
||||
@@ -199,7 +199,7 @@ QString QDeclarativeAudioSample::name() const
|
||||
void QDeclarativeAudioSample::setName(const QString& name)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("AudioSample: name not changable after initialization.");
|
||||
qWarning("AudioSample: name not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_name = name;
|
||||
|
||||
@@ -239,7 +239,7 @@ QDeclarativeSound::PlayType QDeclarativeSound::playType() const
|
||||
void QDeclarativeSound::setPlayType(PlayType playType)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("Sound: playType not changable after initialization.");
|
||||
qWarning("Sound: playType not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_playType = playType;
|
||||
@@ -258,7 +258,7 @@ QString QDeclarativeSound::category() const
|
||||
void QDeclarativeSound::setCategory(const QString& category)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("Sound: category not changable after initialization.");
|
||||
qWarning("Sound: category not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_category = category;
|
||||
@@ -278,7 +278,7 @@ QString QDeclarativeSound::name() const
|
||||
void QDeclarativeSound::setName(const QString& name)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("Sound: category not changable after initialization.");
|
||||
qWarning("Sound: category not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_name = name;
|
||||
@@ -322,7 +322,7 @@ QDeclarativePlayVariation* QDeclarativeSound::getVariation(int index)
|
||||
void QDeclarativeSound::setAttenuationModel(QString attenuationModel)
|
||||
{
|
||||
if (m_complete) {
|
||||
qWarning("Sound: attenuationModel not changable after initialization.");
|
||||
qWarning("Sound: attenuationModel not changeable after initialization.");
|
||||
return;
|
||||
}
|
||||
m_attenuationModel = attenuationModel;
|
||||
|
||||
@@ -925,7 +925,7 @@ void QDeclarativeCamera::setDigitalZoom(qreal value)
|
||||
\qmlproperty variant QtMultimedia::Camera::metaData.gpsLongitude
|
||||
\qmlproperty variant QtMultimedia::Camera::metaData.gpsAltitude
|
||||
|
||||
These properties hold the the geographic position in decimal degrees of the
|
||||
These properties hold the geographic position in decimal degrees of the
|
||||
camera at time of capture.
|
||||
|
||||
\sa {QMediaMetaData}
|
||||
|
||||
@@ -153,7 +153,7 @@ bool QDeclarativeCameraCapture::isReadyForCapture() const
|
||||
for video.
|
||||
|
||||
Camera saves all the capture parameters like exposure settings or
|
||||
image processing parameters, so changes to camera paramaters after
|
||||
image processing parameters, so changes to camera parameters after
|
||||
capture() is called do not affect previous capture requests.
|
||||
|
||||
capture() returns the capture requestId parameter, used with
|
||||
|
||||
Reference in New Issue
Block a user