Fixed a typo.

This commit is contained in:
LoRd_MuldeR 2015-03-14 14:59:18 +01:00
parent 029eabbfdb
commit f43589facb

View File

@ -783,8 +783,8 @@ void MainWindow::init(void)
qDebug("[Validating binaries]");
if(!BinariesCheckThread::check(m_sysinfo.data()))
{
QMessageBox::critical(this, tr("Invalid File!"), tr("<nobr>At least on required tool is missing or is not a valid Win32/Win64 binary.<br>Please re-install the program in order to fix the problem!</nobr>").replace("-", "&minus;"));
qFatal("At least on required tool is missing or is not a valid Win32/Win64 binary!");
QMessageBox::critical(this, tr("Invalid File!"), tr("<nobr>At least one required tool is missing or is not a valid Win32/Win64 binary.<br>Please re-install the program in order to fix the problem!</nobr>").replace("-", "&minus;"));
qFatal("At least one required tool is missing or is not a valid Win32/Win64 binary!");
}
qDebug(" ");