Changed: Minor changes

--HG--
branch : develop
hg/compatibility-develop
kervala 9 years ago
parent 43b658e815
commit 30012f9fb2

@ -673,18 +673,16 @@ CConfigFile::InstallationStep CConfigFile::getNextStep() const
{
return ExtractBnpClient;
}
else
{
QString clientFile = getInstallationDirectory() + "/" + server.clientDownloadFilename;
// when file is not finished, it has .part extension
if (!QFile::exists(clientFile))
{
return DownloadClient;
}
QString clientFile = getInstallationDirectory() + "/" + server.clientDownloadFilename;
return ExtractDownloadedClient;
// when file is not finished, it has .part extension
if (!QFile::exists(clientFile))
{
return DownloadClient;
}
return ExtractDownloadedClient;
}
}

Loading…
Cancel
Save