Fix some typos in strings.

s/Endianess/Endianness/
s/changable/changeable/

Change-Id: I91a43ff6e6143f2d3fc0a93aa8bbf34a415eea90
Reviewed-by: Andrew Knight <qt@panimo.net>
This commit is contained in:
Dmitry Shachnev
2014-12-23 15:21:13 +03:00
parent aa38d3dfb1
commit b21a66a608
3 changed files with 9 additions and 9 deletions

View File

@@ -218,7 +218,7 @@ p, li { white-space: pre-wrap; }
<item row="14" column="0">
<widget class="QLabel" name="actualEndianLabel">
<property name="text">
<string>Endianess</string>
<string>Endianness</string>
</property>
</widget>
</item>

View File

@@ -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;

View File

@@ -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;