Fix a few typos in error messages (doesn't effect translations).
This commit is contained in:
parent
8330043f76
commit
7206fe771e
@ -33,7 +33,7 @@ FLACDecoder::FLACDecoder(void)
|
|||||||
{
|
{
|
||||||
if(m_binary.isEmpty())
|
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!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ MP3Decoder::MP3Decoder(void)
|
|||||||
{
|
{
|
||||||
if(m_binary.isEmpty())
|
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!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ MusepackDecoder::MusepackDecoder(void)
|
|||||||
{
|
{
|
||||||
if(m_binary.isEmpty())
|
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!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ ShortenDecoder::ShortenDecoder(void)
|
|||||||
{
|
{
|
||||||
if(m_binary.isEmpty())
|
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)
|
if(!process.bytesAvailable() && process.state() == QProcess::Running)
|
||||||
{
|
{
|
||||||
process.kill();
|
process.kill();
|
||||||
qWarning("MpcDec process timed out <-- killing!");
|
qWarning("Shorten process timed out <-- killing!");
|
||||||
bTimeout = true;
|
bTimeout = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ SpeexDecoder::SpeexDecoder(void)
|
|||||||
{
|
{
|
||||||
if(m_binary.isEmpty())
|
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!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user