Fix a few typos in error messages (doesn't effect translations).

This commit is contained in:
LoRd_MuldeR 2011-02-02 22:05:17 +01:00
parent 8330043f76
commit 7206fe771e
5 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@ FLACDecoder::FLACDecoder(void)
{
if(m_binary.isEmpty())
{
throw "Error initializing Vorbis decoder. Tool 'flac.exe' is not registred!";
throw "Error initializing FLAC decoder. Tool 'flac.exe' is not registred!";
}
}

View File

@ -33,7 +33,7 @@ MP3Decoder::MP3Decoder(void)
{
if(m_binary.isEmpty())
{
throw "Error initializing MPG123 decoder. Tool 'oggdec.exe' is not registred!";
throw "Error initializing MPG123 decoder. Tool 'mpg123.exe' is not registred!";
}
}

View File

@ -34,7 +34,7 @@ MusepackDecoder::MusepackDecoder(void)
{
if(m_binary.isEmpty())
{
throw "Error initializing WavPack decoder. Tool 'mpcdec.exe' is not registred!";
throw "Error initializing Musepack decoder. Tool 'mpcdec.exe' is not registred!";
}
}

View File

@ -34,7 +34,7 @@ ShortenDecoder::ShortenDecoder(void)
{
if(m_binary.isEmpty())
{
throw "Error initializing WavPack decoder. Tool 'shorten.exe' is not registred!";
throw "Error initializing Shorten decoder. Tool 'shorten.exe' is not registred!";
}
}
@ -75,7 +75,7 @@ bool ShortenDecoder::decode(const QString &sourceFile, const QString &outputFile
if(!process.bytesAvailable() && process.state() == QProcess::Running)
{
process.kill();
qWarning("MpcDec process timed out <-- killing!");
qWarning("Shorten process timed out <-- killing!");
bTimeout = true;
break;
}

View File

@ -33,7 +33,7 @@ SpeexDecoder::SpeexDecoder(void)
{
if(m_binary.isEmpty())
{
throw "Error initializing Vorbis decoder. Tool 'speexdec.exe' is not registred!";
throw "Error initializing Speex decoder. Tool 'speexdec.exe' is not registred!";
}
}