Fix minor typo

This commit is contained in:
Yuri Chornoivan 2017-01-21 08:23:00 +02:00
parent 609b5c54cf
commit e70006cf02
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ Speech::Speech()
connect(m_speech, &QTextToSpeech::stateChanged, this, [this](QTextToSpeech::State state){ connect(m_speech, &QTextToSpeech::stateChanged, this, [this](QTextToSpeech::State state){
qCDebug(SNORE) << state; qCDebug(SNORE) << state;
if (state == QTextToSpeech::BackendError) { if (state == QTextToSpeech::BackendError) {
setErrorString(tr("Sytem Backend Error")); setErrorString(tr("System Backend Error"));
} }
}); });
} }